aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl/opts/CURLINFO_HTTP_CONNECTCODE.3
diff options
context:
space:
mode:
Diffstat (limited to 'docs/libcurl/opts/CURLINFO_HTTP_CONNECTCODE.3')
-rw-r--r--docs/libcurl/opts/CURLINFO_HTTP_CONNECTCODE.32
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libcurl/opts/CURLINFO_HTTP_CONNECTCODE.3 b/docs/libcurl/opts/CURLINFO_HTTP_CONNECTCODE.3
index 4ecbcaaa7..5f5038d72 100644
--- a/docs/libcurl/opts/CURLINFO_HTTP_CONNECTCODE.3
+++ b/docs/libcurl/opts/CURLINFO_HTTP_CONNECTCODE.3
@@ -47,7 +47,7 @@ if(curl) {
long code;
res = curl_easy_getinfo(curl, CURLINFO_HTTP_CONNECTCODE, &code);
if(!res && code)
- printf("The CONNECT response code: %03ld\n", code);
+ printf("The CONNECT response code: %03ld\\n", code);
}
curl_easy_cleanup(curl);
}