From 06f744d447af6648a00f0571116b5b901854abc4 Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Tue, 29 Jan 2019 16:42:22 +0100 Subject: [PATCH] Escape the '\' A backslash should be escaped in Roff / Troff. --- docs/libcurl/curl_url.3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);