diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/imports.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index 08f44a8f88..a09c497795 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -1166,9 +1166,9 @@ _mesa_error( GLcontext *ctx, GLenum error, const char *fmtString, ... ) void _mesa_debug( const GLcontext *ctx, const char *fmtString, ... ) { +#ifdef DEBUG char s[MAXSTRING]; va_list args; - (void) ctx; va_start(args, fmtString); vsnprintf(s, MAXSTRING, fmtString, args); va_end(args); @@ -1177,6 +1177,9 @@ _mesa_debug( const GLcontext *ctx, const char *fmtString, ... ) #else fprintf(stderr, "Mesa: %s", s); #endif +#endif /* DEBUG */ + (void) ctx; + (void) fmtString; } /*@}*/ |