Commit 169ef3a0 authored by runge's avatar runge

Some broken build environments treat fprintf(fh, buf) as a fatal error...

parent 0142acdd
......@@ -74,7 +74,7 @@ rfbDefaultClientLog(const char *format, ...)
time(&log_clock);
strftime(buf, 255, "%d/%m/%Y %X ", localtime(&log_clock));
fprintf(stderr,buf);
fprintf(stderr, "%s", buf);
vfprintf(stderr, format, args);
fflush(stderr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment