Disable fflush in pclog() accidentally enable in a previous commit.
This commit is contained in:
parent
b3f61c09c0
commit
2f19e036f2
1 changed files with 1 additions and 1 deletions
2
src/pc.c
2
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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue