From b8980800ae17f53008c14d52d4b9214cbc4e5750 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 9 Mar 2026 01:07:08 +0100 Subject: [PATCH] fixes --- tests/unit/unit1664.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/unit1664.c b/tests/unit/unit1664.c index b2f1f07b40..17a04a37f2 100644 --- a/tests/unit/unit1664.c +++ b/tests/unit/unit1664.c @@ -367,7 +367,7 @@ static CURLcode test_unit1664(const char *arg) const char *orgline = line; int rc = curlx_str_newline(&line); curl_mprintf("%d: (%%%02x) %d, line %d\n", - i, *orgline, rc, (int)(line - orgline)); + i, (unsigned int)*orgline, rc, (int)(line - orgline)); } }