mesa: remove dead code in _mesa_error
authorKeith Whitwell <keithw@vmware.com>
Tue, 14 Jul 2009 15:25:59 +0000 (16:25 +0100)
committerKeith Whitwell <keithw@vmware.com>
Wed, 15 Jul 2009 12:31:51 +0000 (13:31 +0100)
Remove early and unused snprintf and where[] string.

src/mesa/main/imports.c

index b0e7d9d..c35dcf5 100644 (file)
@@ -1102,14 +1102,8 @@ _mesa_error( GLcontext *ctx, GLenum error, const char *fmtString, ... )
    }
 
    if (debug) {
-      va_list args;
-      char where[MAXSTRING];
       const char *errstr;
 
-      va_start( args, fmtString );  
-      vsnprintf( where, MAXSTRING, fmtString, args );
-      va_end( args );
-
       switch (error) {
         case GL_NO_ERROR:
            errstr = "GL_NO_ERROR";