gallium: _debug_vprintf() should be silent if DEBUG is not defined

This commit is contained in:
Brian
2008-11-08 20:43:38 -07:00
parent eb459814b7
commit 7e83157019

View File

@@ -101,8 +101,10 @@ void _debug_vprintf(const char *format, va_list ap)
#elif defined(PIPE_SUBSYSTEM_WINDOWS_CE) || defined(PIPE_SUBSYSTEM_WINDOWS_MINIPORT)
/* TODO */
#else /* !PIPE_SUBSYSTEM_WINDOWS */
#ifdef DEBUG
vfprintf(stderr, format, ap);
#endif
#endif
}