docs: use mresult as variable name for CURLMcode

This commit is contained in:
Daniel Stenberg 2025-12-16 13:47:45 +01:00
parent 56f600ec23
commit d21f4372ff
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
27 changed files with 126 additions and 126 deletions

View file

@ -149,12 +149,12 @@ int main(void)
int still_running; /* keep number of running handles */
int rc;
CURLMcode mcode = curl_multi_perform(multi, &still_running);
if(mcode)
CURLMcode mresult = curl_multi_perform(multi, &still_running);
if(mresult)
break;
mcode = curl_multi_wait(multi, NULL, 0, 1000, &rc);
if(mcode)
mresult = curl_multi_wait(multi, NULL, 0, 1000, &rc);
if(mresult)
break;
/*