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

Curl_httpchunk_read now takes size_t size arguments instead of the previous

ssize_t
parent c11a1bf7
No related branches found
No related tags found
No related merge requests found
......@@ -96,8 +96,8 @@ void Curl_httpchunk_init(struct connectdata *conn)
*/
CHUNKcode Curl_httpchunk_read(struct connectdata *conn,
char *datap,
ssize_t length,
ssize_t *wrote)
size_t length,
size_t *wrote)
{
CURLcode result;
struct Curl_chunker *ch = &conn->proto.http->chunk;
......
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