diff options
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/imports.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index dbe88a9724..bdeaf809a4 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -1,4 +1,4 @@ -/* $Id: imports.c,v 1.15 2002/06/29 19:48:16 brianp Exp $ */ +/* $Id: imports.c,v 1.16 2002/07/01 08:26:00 joukj Exp $ */ /* * Mesa 3-D graphics library @@ -95,7 +95,7 @@ warning(__GLcontext *gc, char *str) #ifdef DEBUG debug = GL_TRUE; #else - if (_mesa_getenv(gc "MESA_DEBUG")) + if (_mesa_getenv(gc , "MESA_DEBUG")) debug = GL_TRUE; else debug = GL_FALSE; |