diff options
Diffstat (limited to 'functions.c')
-rw-r--r-- | functions.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/functions.c b/functions.c index ad92dd3..a67776f 100644 --- a/functions.c +++ b/functions.c @@ -119,6 +119,14 @@ void debugprint(int level, char *format, ...) { if ((bytes = vfprintf(fp, format, args)) < 0) { debugprint(DEBUG_CRIT, "error: could not write to debug file.\n"); // TODO - This might not be useful if we can't write } + + // Make sure the finished log line ended with a trailing newline + if (format[strlen(format) - 1] != '\n') { + if ((bytes = fprintf(fp, "%c", '\n')) < 0) { + debugprint(DEBUG_CRIT, "error: could not write trailing newline to debug file.\n"); // TODO - This might not be useful if we can't write + } + } + fclose(fp); va_end(args); |