diff options
author | Gaƫl PORTAY <gael.portay@collabora.com> | 2019-06-26 06:27:04 -0400 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-06-26 15:02:26 +0200 |
commit | 44b5468e8eeae889c5f7c8d6f457c6fa6c2c737d (patch) | |
tree | 98f5d138928999212b58328f561dc7bbe965f209 /docs | |
parent | c40eb3220cf73323aef6e49f8ab75b79cc435008 (diff) | |
download | curl-44b5468e8eeae889c5f7c8d6f457c6fa6c2c737d.tar.gz |
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
Diffstat (limited to 'docs')
-rw-r--r-- | docs/libcurl/curl_multi_wait.3 | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |