Module: Mesa Branch: master Commit: 230cc36611346ad61610d6c19404e777878d7501 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=230cc36611346ad61610d6c19404e777878d7501
Author: Jakob Bornecrantz <[email protected]> Date: Mon Jan 9 15:37:51 2012 +0100 mesa: Silence warning Signed-off-by: Jakob Bornecrantz <[email protected]> Reviewed-by Brian Paul <[email protected]> Reviewed-by Ian Romanick <[email protected]> --- 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 004f1f8..4f6f31f 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)) { _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
