calendar

BSD calendar reimplementation
git clone https://git.ce9e.org/calendar.git

commit
6624e8b729f2182662555937d4ec8cde4106d325
parent
ee4526aa053591575191691fbc330365dc0364ae
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2018-11-19 15:07
c: fix security warning

Diffstat

M calendar.c 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/calendar.c b/calendar.c

@@ -341,7 +341,7 @@ void print_matches(struct tm date, struct line *first) {
  341   341 		if (is_match(line->tpl, date)) {
  342   342 			if (!is_first) printf("; ");
  343   343 			is_first = false;
  344    -1 			printf(line->desc);
   -1   344 			printf("%s", line->desc);
  345   345 		}
  346   346 		line = line->next;
  347   347 	}