From: Gaƫl PORTAY Date: Wed, 26 Jun 2019 10:27:04 +0000 (-0400) Subject: curl_multi_wait.3: escape backslash in example X-Git-Tag: curl-7_65_2~37 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=44b5468e8eeae889c5f7c8d6f457c6fa6c2c737d;p=curl 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 --- diff --git a/docs/libcurl/curl_multi_wait.3 b/docs/libcurl/curl_multi_wait.3 index 9f15c5f89..ae5d3d16c 100644 --- a/docs/libcurl/curl_multi_wait.3 +++ b/docs/libcurl/curl_multi_wait.3 @@ -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; }