Skip to content
Snippets Groups Projects
Commit fcfd4bef authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

typecast to prevent picky compiler warning

parent 18dc8fbc
No related branches found
No related tags found
No related merge requests found
......@@ -761,7 +761,7 @@ CURLcode add_buffer_send(send_buffer *in,
conn->fread = (curl_read_callback)readmoredata;
conn->fread_in = (void *)conn;
http->postdata = ptr;
http->postsize = size;
http->postsize = (curl_off_t)size;
http->send_buffer = in;
http->sending = HTTPSEND_REQUEST;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment