summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJouk Jansen <joukj@hrem.stm.tudelft.nl>2002-07-01 08:26:00 +0000
committerJouk Jansen <joukj@hrem.stm.tudelft.nl>2002-07-01 08:26:00 +0000
commitb4338e58879a4f2eabf8af09f9dfa7adf6e9f9f2 (patch)
tree458fdaaf95e3279e476baed4a6cabceee30bcb63 /src
parent89f9cf8addb7f6d36f466ffdcd622b70fa607ffb (diff)
Committing in .
Adding a missing ',' in a parameter list of a routine called Modified Files: Mesa/src/imports.c ----------------------------------------------------------------------
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/imports.c4
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;