From: Svyatoslav Mishyn Date: Tue, 25 Aug 2015 05:31:02 +0000 (+0300) Subject: curl_easy_escape.3: escape '\n' X-Git-Tag: curl-7_45_0~96 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ac7be02e695af95e93b3f5a40b80dcab782f5321;p=thirdparty%2Fcurl.git curl_easy_escape.3: escape '\n' Closes #398 --- diff --git a/docs/libcurl/curl_easy_escape.3 b/docs/libcurl/curl_easy_escape.3 index a7e50e396e..c57aeb192e 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); } }