From: Michael Tremer Date: Sat, 26 Oct 2024 13:20:27 +0000 (+0000) Subject: tests: Align signedness of integers X-Git-Tag: 0.9.30~827 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1352cf9823bdf756b609e8cdf6fd8f2386a746af;p=pakfire.git tests: Align signedness of integers Signed-off-by: Michael Tremer --- 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; }