From 1352cf9823bdf756b609e8cdf6fd8f2386a746af Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sat, 26 Oct 2024 13:20:27 +0000 Subject: [PATCH] tests: Align signedness of integers Signed-off-by: Michael Tremer --- tests/testsuite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testsuite.c b/tests/testsuite.c index 3e3304dab..b4175e28a 100644 --- a/tests/testsuite.c +++ b/tests/testsuite.c @@ -154,7 +154,7 @@ static int check_whether_to_run(const struct test* t, const int argc, const char return 1; // Check if this test has been listed - for (unsigned int i = 1; i < argc; i++) { + for (int i = 1; i < argc; i++) { if (strcmp(t->name, argv[i]) == 0) return 1; } -- 2.39.5