From b4338e58879a4f2eabf8af09f9dfa7adf6e9f9f2 Mon Sep 17 00:00:00 2001 From: Jouk Jansen Date: Mon, 1 Jul 2002 08:26:00 +0000 Subject: [PATCH] Committing in . Adding a missing ',' in a parameter list of a routine called Modified Files: Mesa/src/imports.c ---------------------------------------------------------------------- --- src/mesa/main/imports.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index dbe88a9..bdeaf80 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; -- 2.7.4