From df9d638c24562707d18f0ac1836abc99c8541176 Mon Sep 17 00:00:00 2001 From: Jeff King Date: Sat, 17 Aug 2024 04:23:09 -0400 Subject: 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 Signed-off-by: Junio C Hamano --- t/unit-tests/t-reftable-basics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 't/unit-tests/t-reftable-basics.c') diff --git a/t/unit-tests/t-reftable-basics.c b/t/unit-tests/t-reftable-basics.c index 4e80bdf16d..7ffee74dca 100644 --- a/t/unit-tests/t-reftable-basics.c +++ b/t/unit-tests/t-reftable-basics.c @@ -145,7 +145,7 @@ static void test_u16_roundtrip(void) check_int(in, ==, out); } -int cmd_main(int argc, const char *argv[]) +int cmd_main(int argc UNUSED, const char *argv[] UNUSED) { TEST(test_common_prefix(), "common_prefix_size works"); TEST(test_parse_names_normal(), "parse_names works for basic input"); -- cgit 1.2.3-korg