mirror of
https://github.com/moparisthebest/curl
synced 2025-01-10 21:48:10 -05:00
Escape the '\'
A backslash should be escaped in Roff / Troff.
This commit is contained in:
parent
3de607415c
commit
06f744d447
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user