diff options
author | Jakob Bornecrantz <[email protected]> | 2012-01-09 15:37:51 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2012-01-10 16:59:43 +0100 |
commit | 230cc36611346ad61610d6c19404e777878d7501 (patch) | |
tree | 00cbb12aa8167cb4e34a21a97fe16a68b2b1c757 /src/mesa/program/symbol_table.c | |
parent | 54f6b64e7ec905bad9e6ab0b7fc9e035c48030aa (diff) |
mesa: Silence warning
Signed-off-by: Jakob Bornecrantz <[email protected]>
Reviewed-by Brian Paul <[email protected]>
Reviewed-by Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/program/symbol_table.c')
-rw-r--r-- | src/mesa/program/symbol_table.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/program/symbol_table.c b/src/mesa/program/symbol_table.c index 004f1f8fa7b..4f6f31f3109 100644 --- a/src/mesa/program/symbol_table.c +++ b/src/mesa/program/symbol_table.c @@ -255,6 +255,7 @@ _mesa_symbol_table_iterator_next(struct _mesa_symbol_table_iterator *iter) while (iter->curr != NULL) { assert(iter->curr->hdr == hdr); + (void)hdr; if ((iter->name_space == -1) || (iter->curr->name_space == iter->name_space)) { |