From d0377cf1348bef381ab13fb321677858399ece4a Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 7 Mar 2026 16:52:35 +0100 Subject: [PATCH] unit1658.c drop redundant result cast --- tests/unit/unit1658.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/unit1658.c b/tests/unit/unit1658.c index fa281fe3ea..41cfb48d79 100644 --- a/tests/unit/unit1658.c +++ b/tests/unit/unit1658.c @@ -46,7 +46,7 @@ static void rrresults(struct Curl_https_rrinfo *rr, CURLcode res) { char *p = rrbuffer; const char *pend = rrbuffer + sizeof(rrbuffer); - curl_msnprintf(rrbuffer, sizeof(rrbuffer), "r:%d|", (int)res); + curl_msnprintf(rrbuffer, sizeof(rrbuffer), "r:%d|", res); p += strlen(rrbuffer); if(rr) {