diff options
author | David Robillard <d@drobilla.net> | 2014-09-23 03:25:22 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-09-23 03:25:22 +0000 |
commit | 28f948ed40c8340e906e8ba719ed91aa2bca4538 (patch) | |
tree | 60fab81cbe45c59eaa56091906537c38167b2546 /test/hash_test.c | |
parent | c5971b8a7b960803440d894b68b4620e6996ae13 (diff) | |
download | zix-28f948ed40c8340e906e8ba719ed91aa2bca4538.tar.gz zix-28f948ed40c8340e906e8ba719ed91aa2bca4538.tar.bz2 zix-28f948ed40c8340e906e8ba719ed91aa2bca4538.zip |
Allow non-const visitation of hash nodes.
Update doc comments.
git-svn-id: http://svn.drobilla.net/zix/trunk@88 df6676b4-ccc9-40e5-b5d6-7c4628a128e3
Diffstat (limited to 'test/hash_test.c')
-rw-r--r-- | test/hash_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/hash_test.c b/test/hash_test.c index aeafc06..7da514b 100644 --- a/test/hash_test.c +++ b/test/hash_test.c @@ -56,7 +56,7 @@ test_fail(const char* fmt, ...) static unsigned n_checked = 0; static void -check(const void* value, void* user_data) +check(void* value, void* user_data) { if (strlen(*(const char*const*)value) >= 3) { ++n_checked; |