diff options
author | Brian Paul <[email protected]> | 2012-10-27 08:58:19 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-10-29 17:56:04 -0600 |
commit | 06bb81f01daaa87210456729d704f16c7e3f934b (patch) | |
tree | 0608f6f49ff987956e107657617eb2a11f53f6fb /src/mesa/program | |
parent | 8e45e38512a1f7c8b304b96226105da54e473d25 (diff) |
mesa: silence MSVC signed/unsigned comparision warnings in hash_table.c
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/mesa/program')
-rw-r--r-- | src/mesa/program/hash_table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/program/hash_table.c b/src/mesa/program/hash_table.c index 7dabadc5058..f45ed46afad 100644 --- a/src/mesa/program/hash_table.c +++ b/src/mesa/program/hash_table.c @@ -193,7 +193,7 @@ hash_table_call_foreach(struct hash_table *ht, void *closure), void *closure) { - int bucket; + unsigned bucket; for (bucket = 0; bucket < ht->num_buckets; bucket++) { struct node *node, *temp; |