diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2008-03-03 17:49:38 +0100 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2008-03-03 17:50:10 +0100 |
commit | 689e1c5d501eb2f557f85dd3279ac5d91e53b0ad (patch) | |
tree | 015908bb3d85e2aef07adc8a3188eaf9f9b83988 | |
parent | 800d13df726b9f82f796c86fe7ae6d18231820ec (diff) |
win32: don't prepend all debug with gallium3d
-rw-r--r-- | src/gallium/auxiliary/util/p_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/p_debug.c b/src/gallium/auxiliary/util/p_debug.c index b9607a6ba7..0da3b66a4d 100644 --- a/src/gallium/auxiliary/util/p_debug.c +++ b/src/gallium/auxiliary/util/p_debug.c @@ -43,7 +43,7 @@ void debug_vprintf(const char *format, va_list ap) { #ifdef WIN32 - EngDebugPrint("Gallium3D: ", (PCHAR)format, ap); + EngDebugPrint("", (PCHAR)format, ap); #else vfprintf(stderr, format, ap); #endif |