From d40241e2013488ce223f54892545f5a667a87cb9 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 11 Jul 2025 14:01:51 +0200 Subject: [PATCH] fixup signed/unsigned mismatch --- lib/curl_fnmatch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/curl_fnmatch.c b/lib/curl_fnmatch.c index f8160673cc..66b9739f3c 100644 --- a/lib/curl_fnmatch.c +++ b/lib/curl_fnmatch.c @@ -75,7 +75,7 @@ static int parsekeyword(const unsigned char **pattern, unsigned char *charset) { parsekey_state state = CURLFNM_PKW_INIT; char keyword[10] = { 0 }; - int i; + size_t i; const unsigned char *p = *pattern; bool found = FALSE; for(i = 0; !found; i++) {