Skip to content

Commit

Permalink
curl_easy_escape.3: escape '\n'
Browse files Browse the repository at this point in the history
Closes #398
  • Loading branch information
Svyatoslav Mishyn authored and bagder committed Aug 25, 2015
1 parent 37f173c commit ac7be02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/libcurl/curl_easy_escape.3
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit ac7be02

Please sign in to comment.