summaryrefslogtreecommitdiff
path: root/docs/libcurl/opts/CURLINFO_CONTENT_TYPE.3
diff options
context:
space:
mode:
Diffstat (limited to 'docs/libcurl/opts/CURLINFO_CONTENT_TYPE.3')
-rw-r--r--docs/libcurl/opts/CURLINFO_CONTENT_TYPE.32
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libcurl/opts/CURLINFO_CONTENT_TYPE.3 b/docs/libcurl/opts/CURLINFO_CONTENT_TYPE.3
index a7cd70fe9..3dce953e6 100644
--- a/docs/libcurl/opts/CURLINFO_CONTENT_TYPE.3
+++ b/docs/libcurl/opts/CURLINFO_CONTENT_TYPE.3
@@ -51,7 +51,7 @@ if(curl) {
char *ct = NULL;
res = curl_easy_getinfo(curl, CURLINFO_CONTENT_TYPE, &ct);
if(!res && ct) {
- printf("Content-Type: %s\n", ct);
+ printf("Content-Type: %s\\n", ct);
}
}
curl_easy_cleanup(curl);