From: Brian Paul Date: Mon, 17 Jan 2005 01:21:03 +0000 (+0000) Subject: silence warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0a360cfab5a871a6e2c87129a1136f3c8ffc7d63;p=mesa.git silence warning --- diff --git a/src/mesa/shader/arbprogparse.c b/src/mesa/shader/arbprogparse.c index 6ca525fb108..b306900006b 100644 --- a/src/mesa/shader/arbprogparse.c +++ b/src/mesa/shader/arbprogparse.c @@ -555,7 +555,7 @@ var_cache_append (struct var_cache **va, struct var_cache *nv) static struct var_cache * var_cache_find (struct var_cache *va, GLubyte * name) { - struct var_cache *first = va; + /*struct var_cache *first = va;*/ while (va) { if (!strcmp ( (const char*) name, (const char*) va->name)) {