From a06fd649747d252ffc7dabc5ea35a17d8a6452bf Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 17 Apr 2026 13:17:17 +0200 Subject: [PATCH] unit1658: rename `CURLcode` to `result` Closes #21356 --- tests/unit/unit1658.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/unit1658.c b/tests/unit/unit1658.c index fa281fe3ea..1c59c09c45 100644 --- a/tests/unit/unit1658.c +++ b/tests/unit/unit1658.c @@ -42,11 +42,11 @@ static CURLcode t1658_setup(void) */ static char rrbuffer[256]; -static void rrresults(struct Curl_https_rrinfo *rr, CURLcode res) +static void rrresults(struct Curl_https_rrinfo *rr, CURLcode result) { 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|", (int)result); p += strlen(rrbuffer); if(rr) {