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/sorted_array_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/sorted_array_test.c')
-rw-r--r-- | test/sorted_array_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sorted_array_test.c b/test/sorted_array_test.c index ad52db5..a90f1e7 100644 --- a/test/sorted_array_test.c +++ b/test/sorted_array_test.c @@ -32,7 +32,7 @@ static unsigned seed = 1; static int -int_cmp(const void* a, const void* b, ZIX_UNUSED const void* user_data) +int_cmp(const void* a, const void* b, const void* ZIX_UNUSED(user_data)) { const intptr_t ia = *(const intptr_t*)a; const intptr_t ib = *(const intptr_t*)b; |