summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-09-23 03:25:22 +0000
committerDavid Robillard <d@drobilla.net>2014-09-23 03:25:22 +0000
commit28f948ed40c8340e906e8ba719ed91aa2bca4538 (patch)
tree60fab81cbe45c59eaa56091906537c38167b2546 /test
parentc5971b8a7b960803440d894b68b4620e6996ae13 (diff)
downloadzix-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')
-rw-r--r--test/hash_test.c2
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;