diff options
author | Brian Paul <[email protected]> | 2002-06-13 04:49:17 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-06-13 04:49:17 +0000 |
commit | d09a1d8b29ae5841ae39b5c24c3f4693dd750559 (patch) | |
tree | 4f988f9357fdfbb2b0663861aad395168a4d7227 /src/mesa/main/context.c | |
parent | 2f35d5e9d53165f6baf2d4a7fece3bb39d945323 (diff) |
more removal of fprintf() calls
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 15976dfa718..a1975bd00ca 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.165 2002/06/13 04:31:09 brianp Exp $ */ +/* $Id: context.c,v 1.166 2002/06/13 04:49:17 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -2264,16 +2264,16 @@ _mesa_error( GLcontext *ctx, GLenum error, const char *where ) /* * Call this to report debug information. */ -#ifdef DEBUG void _mesa_debug( const char *fmtString, ... ) { +#ifdef DEBUG va_list args; va_start( args, fmtString ); (void) vfprintf( stderr, fmtString, args ); va_end( args ); -} #endif +} void |