diff options
author | David Robillard <d@drobilla.net> | 2014-08-08 03:26:25 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-08-08 03:26:25 +0000 |
commit | ce0ab9ef319383619ede0d53305b22b0ef1240b8 (patch) | |
tree | ee7c7a1aaedc17628eb888e2fe0e1837d1402241 /src/zix/hash.c | |
parent | 46e5b520df7f08edb96fb29e3775bccf3205d8f7 (diff) | |
download | sord-ce0ab9ef319383619ede0d53305b22b0ef1240b8.tar.gz sord-ce0ab9ef319383619ede0d53305b22b0ef1240b8.tar.bz2 sord-ce0ab9ef319383619ede0d53305b22b0ef1240b8.zip |
Fix some const-correctness violations.
git-svn-id: http://svn.drobilla.net/sord/trunk@297 3d64ff67-21c5-427c-a301-fe4f08042e5a
Diffstat (limited to 'src/zix/hash.c')
-rw-r--r-- | src/zix/hash.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/zix/hash.c b/src/zix/hash.c index b24ee78..655c5df 100644 --- a/src/zix/hash.c +++ b/src/zix/hash.c @@ -46,8 +46,8 @@ struct ZixHashImpl { unsigned count; }; -static inline const void* -zix_hash_value(const ZixHashEntry* entry) +static inline void* +zix_hash_value(ZixHashEntry* entry) { return entry + 1; } @@ -214,13 +214,13 @@ zix_hash_remove(ZixHash* hash, const void* value) } ZIX_API void -zix_hash_foreach(const ZixHash* hash, +zix_hash_foreach(ZixHash* hash, ZixHashVisitFunc f, void* user_data) { for (unsigned b = 0; b < *hash->n_buckets; ++b) { ZixHashEntry* bucket = hash->buckets[b]; - for (const ZixHashEntry* e = bucket; e; e = e->next) { + for (ZixHashEntry* e = bucket; e; e = e->next) { f(zix_hash_value(e), user_data); } } |