Unverified Commit b875250e authored by Marcel Raad's avatar Marcel Raad
Browse files

formdata: fix -Wcomma warning

clang 5.0 complains:
possible misuse of comma operator here [-Wcomma]

Change the comma to a semicolon to fix that.
parent 31b39c40
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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