]> git.ipfire.org Git - pakfire.git/commitdiff
tests: Align signedness of integers
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 26 Oct 2024 13:20:27 +0000 (13:20 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 26 Oct 2024 13:20:27 +0000 (13:20 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
tests/testsuite.c

index 3e3304dab6e1da648edc9f13dd4d37338131f29f..b4175e28a0548dc3e9415a3f4dfebd88898ff4c5 100644 (file)
@@ -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;
        }