Disable fflush in pclog() accidentally enable in a previous commit.

This commit is contained in:
SarahW 2019-04-24 17:49:54 +01:00
commit 2f19e036f2

View file

@ -104,7 +104,7 @@ void pclog(const char *format, ...)
vsprintf(buf, format, ap);
va_end(ap);
fputs(buf,pclogf);
fflush(pclogf);
// fflush(pclogf);
#endif
}