mirror of
https://github.com/curl/curl.git
synced 2026-07-30 03:18:03 +03:00
docs: use mresult as variable name for CURLMcode
This commit is contained in:
parent
56f600ec23
commit
d21f4372ff
27 changed files with 126 additions and 126 deletions
|
|
@ -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;
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue