diff options
author | David Robillard <d@drobilla.net> | 2019-10-18 17:00:48 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-10-18 17:07:56 +0200 |
commit | ced30ed4b498c34b9aaf69bdcae12f3cedb43af8 (patch) | |
tree | 23e3f002821bd360018bc08ad8a879eb548640d0 /test/sorted_array_test.c | |
parent | e36a086818936d921d7303e45d6180a948ef3196 (diff) | |
download | zix-ced30ed4b498c34b9aaf69bdcae12f3cedb43af8.tar.gz zix-ced30ed4b498c34b9aaf69bdcae12f3cedb43af8.tar.bz2 zix-ced30ed4b498c34b9aaf69bdcae12f3cedb43af8.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 76745cf..5ebe8e8 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, const void* user_data) +int_cmp(const void* a, const void* b, ZIX_UNUSED const void* user_data) { const intptr_t ia = *(const intptr_t*)a; const intptr_t ib = *(const intptr_t*)b; |