mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
mesa: silence MSVC signed/unsigned comparision warnings in hash_table.c
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
This commit is contained in:
parent
8e45e38512
commit
06bb81f01d
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue