From: Michael Tremer Date: Sat, 14 Dec 2024 12:32:55 +0000 (+0000) Subject: tests: Fix signedness of an integer X-Git-Tag: 0.9.30~729 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e28bad5e183a53cffb63c7bc9ba86d56a5b1c814;p=pakfire.git tests: Fix signedness of an integer Signed-off-by: Michael Tremer --- diff --git a/tests/parser/test.c b/tests/parser/test.c index 2d0a96116..332eb3da0 100644 --- a/tests/parser/test.c +++ b/tests/parser/test.c @@ -69,7 +69,7 @@ int main(int argc, const char* argv[]) { } // Try parsing all files that have been passed on the command line - for (unsigned int i = 1; i < argc; i++) { + for (int i = 1; i < argc; i++) { printf("Parsing %s...\n", argv[i]); // Try opening the file