From d09a1d8b29ae5841ae39b5c24c3f4693dd750559 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 13 Jun 2002 04:49:17 +0000 Subject: more removal of fprintf() calls --- src/mesa/main/context.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mesa/main/context.c') diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 15976dfa71..a1975bd00c 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 -- cgit v1.2.3