diff options
Diffstat (limited to 'docs/examples/curlx.c')
-rw-r--r-- | docs/examples/curlx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/curlx.c b/docs/examples/curlx.c index c358556dc..c36beedfa 100644 --- a/docs/examples/curlx.c +++ b/docs/examples/curlx.c @@ -492,8 +492,8 @@ int main(int argc, char **argv) /* pass our list of custom made headers */ - contenttype = malloc(15+strlen(mimetype)); - snprintf(contenttype, 15+strlen(mimetype), "Content-type: %s", mimetype); + contenttype = malloc(15 + strlen(mimetype)); + snprintf(contenttype, 15 + strlen(mimetype), "Content-type: %s", mimetype); headers = curl_slist_append(headers, contenttype); curl_easy_setopt(p.curl, CURLOPT_HTTPHEADER, headers); |