From 64c725472f7e743bb3a42b8e1deaf70567c9a103 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 14 Apr 2026 23:41:31 +0200 Subject: [PATCH] unit1675.c fix mask --- tests/unit/unit1675.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/unit1675.c b/tests/unit/unit1675.c index 25616c6727..2a1d39de37 100644 --- a/tests/unit/unit1675.c +++ b/tests/unit/unit1675.c @@ -185,7 +185,7 @@ static CURLcode test_unit1675(const char *arg) uc = urlencode_str(&out, tests[i].in, strlen(tests[i].in), tests[i].relative, tests[i].query); if(uc || strcmp(curlx_dyn_ptr(&out), tests[i].out)) { - curl_mfprintf(stderr, "urlencode_str('%s', query=%d) failed:" + curl_mfprintf(stderr, "urlencode_str('%s', query=%u) failed:" " expected '%s', got '%s'\n", tests[i].in, tests[i].query, tests[i].out, uc ? "error" : curlx_dyn_ptr(&out));