This commit is contained in:
Sheldon Lee 2020-07-01 02:01:04 +01:00
parent 49cced6b4f
commit fada7a7af3

1
log.c
View File

@ -18,5 +18,6 @@ void logLine(char* string)
void endLog() void endLog()
{ {
if (!file) return;
fclose(file); fclose(file);
} }