mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01:00
util/debug: need to fflush(stderr) on windows
Hard to believe... but true.
This commit is contained in:
parent
5b41e30f26
commit
02ab1eaed7
1 changed files with 1 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue