diff options
author | David Robillard <d@drobilla.net> | 2020-08-13 17:25:39 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-13 17:25:39 +0200 |
commit | 56b8eb22da76b58a60a797994cecb6499e236896 (patch) | |
tree | 38ac10bd2a0465340535397567a150098cc62423 /test/hash_test.c | |
parent | c64c8bb33042f2e49eea2efb6e4bbff812e955c1 (diff) | |
download | zix-56b8eb22da76b58a60a797994cecb6499e236896.tar.gz zix-56b8eb22da76b58a60a797994cecb6499e236896.tar.bz2 zix-56b8eb22da76b58a60a797994cecb6499e236896.zip |
Fix unused parameter warnings
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 f4ebdfe..b2143eb 100644 --- a/test/hash_test.c +++ b/test/hash_test.c @@ -61,7 +61,7 @@ test_fail(const char* fmt, ...) static unsigned n_checked = 0; static void -check(void* value, ZIX_UNUSED void* user_data) +check(void* value, void* ZIX_UNUSED(user_data)) { if (strlen(*(const char*const*)value) >= 3) { ++n_checked; |