util/debug: need to fflush(stderr) on windows

Hard to believe... but true.
This commit is contained in:
Keith Whitwell
2009-02-20 14:27:23 +00:00
parent 5b41e30f26
commit 02ab1eaed7

View File

@@ -110,6 +110,7 @@ void _debug_vprintf(const char *format, va_list ap)
if(GetConsoleWindow() && !IsDebuggerPresent()) {
vfprintf(stderr, format, ap);
fflush(stderr);
}
#elif defined(PIPE_SUBSYSTEM_WINDOWS_CE)