summaryrefslogtreecommitdiff
path: root/t/unit-tests/t-prio-queue.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2024-08-17 04:23:09 -0400
committerJunio C Hamano <gitster@pobox.com>2024-08-17 09:46:12 -0700
commitdf9d638c24562707d18f0ac1836abc99c8541176 (patch)
tree56507988e6b1ffaceb1c25133f6ffa24e8f03189 /t/unit-tests/t-prio-queue.c
parent7046c85cceb2d28124ce2229242e9fef7a63f4f0 (diff)
unit-tests: ignore unused argc/argv
All of the unit test programs have their own cmd_main() function, but none of them actually look at the argc/argv that is passed in. In the long run we may want them to handle options for the test harness. But we'd probably do that with a shared harness cmd_main(), dispatching to the individual tests. In the meantime, let's annotate the unused parameters to avoid triggering -Wunused-parameter. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/unit-tests/t-prio-queue.c')
-rw-r--r--t/unit-tests/t-prio-queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/unit-tests/t-prio-queue.c b/t/unit-tests/t-prio-queue.c
index 7a4e5780e1..fe6ae37935 100644
--- a/t/unit-tests/t-prio-queue.c
+++ b/t/unit-tests/t-prio-queue.c
@@ -69,7 +69,7 @@ static void test_prio_queue(int *input, size_t input_size,
#define TEST_INPUT(input, result) \
test_prio_queue(input, ARRAY_SIZE(input), result, ARRAY_SIZE(result))
-int cmd_main(int argc, const char **argv)
+int cmd_main(int argc UNUSED, const char **argv UNUSED)
{
TEST(TEST_INPUT(((int []){ 2, 6, 3, 10, 9, 5, 7, 4, 5, 8, 1, DUMP }),
((int []){ 1, 2, 3, 4, 5, 5, 6, 7, 8, 9, 10 })),