hash_table: Fix compiler warnings from the renaming.
authorEric Anholt <eric@anholt.net>
Mon, 15 Dec 2014 04:21:32 +0000 (20:21 -0800)
committerEric Anholt <eric@anholt.net>
Mon, 15 Dec 2014 04:22:07 +0000 (20:22 -0800)
Not sure how we both missed this.  None of the callers were using the
return value, though.

src/util/hash_table.c

index e85ebe345f864cccad6e8afaa37cd1c865a0d5e0..0ad03837760ccbc829e75bd5069535103b61e05e 100644 (file)
@@ -330,7 +330,7 @@ struct hash_entry *
 _mesa_hash_table_insert(struct hash_table *ht, const void *key, void *data)
 {
    assert(ht->key_hash_function);
-   hash_table_insert(ht, ht->key_hash_function(key), key, data);
+   return hash_table_insert(ht, ht->key_hash_function(key), key, data);
 }
 
 struct hash_entry *
@@ -338,7 +338,7 @@ _mesa_hash_table_insert_with_hash(struct hash_table *ht, uint32_t hash,
                                   const void *key, void *data)
 {
    assert(ht->key_hash_function == NULL || hash == ht->key_hash_function(key));
-   hash_table_insert(ht, hash, key, data);
+   return hash_table_insert(ht, hash, key, data);
 }
 
 /**