diff options
author | Svyatoslav Mishyn <juef@openmailbox.org> | 2015-08-25 08:31:02 +0300 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-08-25 22:44:22 +0200 |
commit | ac7be02e695af95e93b3f5a40b80dcab782f5321 (patch) | |
tree | e82e895e471a9bca7ae1659ad8f325406b63ae2c /docs | |
parent | 37f173cfd01c6bfedd20f534fea7521b9f26099a (diff) |
curl_easy_escape.3: escape '\n'
Closes #398
Diffstat (limited to 'docs')
-rw-r--r-- | docs/libcurl/curl_easy_escape.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libcurl/curl_easy_escape.3 b/docs/libcurl/curl_easy_escape.3 index a7e50e396..c57aeb192 100644 --- a/docs/libcurl/curl_easy_escape.3 +++ b/docs/libcurl/curl_easy_escape.3 @@ -49,7 +49,7 @@ CURL *curl = curl_easy_init(); if(curl) { char *output = curl_easy_escape(curl, "data to convert", 15); if(output) { - printf("Encoded: %s\n", output); + printf("Encoded: %s\en", output); curl_free(output); } } |