diff options
author | Brian Paul <[email protected]> | 2005-01-17 01:21:03 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-01-17 01:21:03 +0000 |
commit | 0a360cfab5a871a6e2c87129a1136f3c8ffc7d63 (patch) | |
tree | 5fdbe3ae2ce28a8b07c7316942c497d3e5924344 | |
parent | 848ff851575241454935c205eace88e799966563 (diff) |
silence warning
-rw-r--r-- | src/mesa/shader/arbprogparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)) { |