commit e6556e1776942860b67b686eee4f150f431b8e67
parent 0141b441b3a42126458f6f7d7014cfcf6cd59dac
Author: Andreas Gruhler <agruhl@gmx.ch>
Date: Mon, 3 Jan 2022 00:20:47 +0100
fix(export): add newline
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/export.c b/src/export.c
@@ -128,7 +128,7 @@ void ics_export(const char* ics_filepath, WINDOW* header, WINDOW* cal, WINDOW* a
break;
} else {
vevents = (char*) veventsr;
- strcat(vevents, "END:VCALENDAR");
+ strcat(vevents, "END:VCALENDAR\n");
}
fputs(vevents, pfile);