fix compile error in printevents.c

This commit is contained in:
Liam Waldron 2023-04-14 11:59:35 -04:00
parent effb433765
commit c0922556cf

View File

@ -20,7 +20,8 @@ char printevents() {
} }
time_t t = time(NULL); time_t t = time(NULL);
printf(TXT_BOLD COL_BLUE "[:=] To do for %s", ctime(&t) COL_RESET TXT_RESET); printf(TXT_BOLD COL_BLUE "[:=] To do for %s", ctime(&t));
printf(COL_RESET TXT_RESET "\n");
contents = fgetc(fp); contents = fgetc(fp);
while (contents != EOF) { while (contents != EOF) {