From 56b8eb22da76b58a60a797994cecb6499e236896 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 13 Aug 2020 17:25:39 +0200 Subject: Fix unused parameter warnings --- test/sorted_array_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/sorted_array_test.c') 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; -- cgit v1.2.1