diary

Text-based journaling program
git clone https://git.in0rdr.ch/diary.git
Log | Files | Refs | README | LICENSE

commit 104d5ddf3d42f059d37a717a5bc494f5c5a5b87c
parent 3a897e6756f3adb144a7d982c2dfc69701ec6669
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Sat,  4 Dec 2021 21:21:03 +0100

fix #81

Diffstat:
Msrc/utils.c | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/src/utils.c b/src/utils.c @@ -343,7 +343,6 @@ void fpath(const char* dir, size_t dir_size, const struct tm* date, char** rpath bool go_to(WINDOW* calendar, WINDOW* aside, time_t date, int* cur_pad_pos, struct tm* curs_date, struct tm* cal_start, struct tm* cal_end) { if (date < mktime(cal_start) || date > mktime(cal_end)) { - fprintf(stderr, "Invalid cursor move, return from go_to\n"); return false; }