mirror of
https://github.com/moparisthebest/curl
synced 2024-11-04 16:45:06 -05:00
curl_multi_wait.3: escape backslash in example
The backslash in the character Line Feed must be escaped. The current man-page outputs the code as following: fprintf(stderr, "curl_multi failed, code %d.0, mc); The commit fixes it as follow: fprintf(stderr, "curl_multi failed, code %d\n", mc); Closes #4079
This commit is contained in:
parent
c40eb3220c
commit
44b5468e8e
@ -91,7 +91,7 @@ do {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(mc != CURLM_OK) {
|
if(mc != CURLM_OK) {
|
||||||
fprintf(stderr, "curl_multi failed, code %d.\n", mc);
|
fprintf(stderr, "curl_multi failed, code %d.\\n", mc);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user