1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Escape the '\'

A backslash should be escaped in Roff / Troff.
This commit is contained in:
Gisle Vanem 2019-01-29 16:42:22 +01:00 committed by GitHub
parent 3de607415c
commit 06f744d447
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);