Cleanup stdout flushing

Flushing is not needed since we disabled buffering of stdout.
This commit is contained in:
Martin Lund 2022-06-22 01:03:46 +02:00
parent 4c611e6767
commit a0f3f9d9b7
4 changed files with 1 additions and 11 deletions

View file

@ -175,7 +175,6 @@ void log_close(void)
{
if (fp != NULL)
{
fflush(fp);
fclose(fp);
}
}