From 2f19e036f2a16f57f7c66fc8a11302d9409ce58e Mon Sep 17 00:00:00 2001 From: SarahW Date: Wed, 24 Apr 2019 17:49:54 +0100 Subject: [PATCH] Disable fflush in pclog() accidentally enable in a previous commit. --- src/pc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pc.c b/src/pc.c index 9deea6d..c6f0469 100644 --- a/src/pc.c +++ b/src/pc.c @@ -104,7 +104,7 @@ void pclog(const char *format, ...) vsprintf(buf, format, ap); va_end(ap); fputs(buf,pclogf); - fflush(pclogf); +// fflush(pclogf); #endif }