From: Gisle Vanem Date: Tue, 29 Jan 2019 15:42:22 +0000 (+0100) Subject: Escape the '\' X-Git-Tag: curl-7_64_0~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=06f744d447af6648a00f0571116b5b901854abc4;p=curl Escape the '\' A backslash should be escaped in Roff / Troff. --- diff --git a/docs/libcurl/curl_url.3 b/docs/libcurl/curl_url.3 index a14c45b6d..f366f88a2 100644 --- a/docs/libcurl/curl_url.3 +++ b/docs/libcurl/curl_url.3 @@ -48,7 +48,7 @@ Returns a \fBCURLU *\fP if successful, or NULL if out of memory. char *scheme; rc = curl_url_get(url, CURLUPART_SCHEME, &scheme, 0); if(!rc) { - printf("the scheme is %s\n", scheme); + printf("the scheme is %s\\n", scheme); curl_free(scheme); } curl_url_cleanup(url);