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:
Gaël PORTAY 2019-06-26 06:27:04 -04:00 committed by Daniel Stenberg
parent c40eb3220c
commit 44b5468e8e
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ do {
}
if(mc != CURLM_OK) {
fprintf(stderr, "curl_multi failed, code %d.\n", mc);
fprintf(stderr, "curl_multi failed, code %d.\\n", mc);
break;
}