mirror of
https://github.com/curl/curl.git
synced 2026-08-25 06:23:30 +03:00
formdata: fix -Wcomma warning
clang 5.0 complains: possible misuse of comma operator here [-Wcomma] Change the comma to a semicolon to fix that.
This commit is contained in:
parent
31b39c40cf
commit
b875250e32
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ AddHttpPost(char *name, size_t namelength,
|
|||
post->contenttype = contenttype;
|
||||
post->contentheader = contentHeader;
|
||||
post->showfilename = showfilename;
|
||||
post->userp = userp,
|
||||
post->userp = userp;
|
||||
post->flags = flags | CURL_HTTPPOST_LARGE;
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue