change to 1L because technically the argument is a long

This commit is contained in:
jacob1 2020-01-20 11:16:33 -05:00
parent 0c588c48fe
commit 467be1dcb9

View File

@ -164,7 +164,7 @@ namespace http
#endif
else if (isPost)
{
curl_easy_setopt(easy, CURLOPT_POST, 1);
curl_easy_setopt(easy, CURLOPT_POST, 1L);
curl_easy_setopt(easy, CURLOPT_POSTFIELDS, "");
}
else