summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/libcurl/curl_url.32
1 files changed, 1 insertions, 1 deletions
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);