From: Viktor Szakats Date: Fri, 17 Apr 2026 11:17:17 +0000 (+0200) Subject: unit1658: rename `CURLcode` to `result` X-Git-Tag: rc-8_20_0-3~34 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=a06fd649747d252ffc7dabc5ea35a17d8a6452bf;p=thirdparty%2Fcurl.git unit1658: rename `CURLcode` to `result` Closes #21356 --- 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) {