tests: rename CURLMcode variables to mresult

This commit is contained in:
Daniel Stenberg 2025-12-16 13:40:02 +01:00
parent 0a26e3a660
commit 56f600ec23
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
255 changed files with 1771 additions and 1772 deletions

View file

@ -28,7 +28,7 @@
static CURLcode t1303_setup(struct Curl_easy **easy)
{
CURLcode res = CURLE_OK;
CURLcode result = CURLE_OK;
global_init(CURL_GLOBAL_ALL);
*easy = curl_easy_init();
@ -36,7 +36,7 @@ static CURLcode t1303_setup(struct Curl_easy **easy)
curl_global_cleanup();
return CURLE_OUT_OF_MEMORY;
}
return res;
return result;
}
static void t1303_stop(struct Curl_easy *easy)