diff options
author | David Robillard <d@drobilla.net> | 2019-01-07 20:00:56 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-01-07 20:00:56 +0100 |
commit | 8489a1a91e254f8bc987c2a5b65791dee1120c5c (patch) | |
tree | dd667ffbf9edf4c8f7034ca7e4f9d878ef8b1c43 /zix | |
parent | a3034c7d34b86a122635e5fe93bbd3e07856fc22 (diff) | |
download | zix-8489a1a91e254f8bc987c2a5b65791dee1120c5c.tar.gz zix-8489a1a91e254f8bc987c2a5b65791dee1120c5c.tar.bz2 zix-8489a1a91e254f8bc987c2a5b65791dee1120c5c.zip |
Make zix_hash_insert() provide a non-const pointer
Diffstat (limited to 'zix')
-rw-r--r-- | zix/hash.c | 2 | ||||
-rw-r--r-- | zix/hash.h | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -150,7 +150,7 @@ zix_hash_find(const ZixHash* hash, const void* value) } ZIX_API ZixStatus -zix_hash_insert(ZixHash* hash, const void* value, const void** inserted) +zix_hash_insert(ZixHash* hash, const void* value, void** inserted) { unsigned h_nomod = hash->hash_func(value); unsigned h = h_nomod % *hash->n_buckets; @@ -91,9 +91,9 @@ zix_hash_size(const ZixHash* hash); @return ZIX_STATUS_SUCCESS, ZIX_STATUS_EXISTS, or ZIX_STATUS_NO_MEM. */ ZIX_API ZixStatus -zix_hash_insert(ZixHash* hash, - const void* value, - const void** inserted); +zix_hash_insert(ZixHash* hash, + const void* value, + void** inserted); /** Remove an item from `hash`. |