mirror of
https://github.com/curl/curl.git
synced 2026-06-05 14:54:14 +03:00
Curl_httpchunk_read now takes size_t size arguments instead of the previous
ssize_t
This commit is contained in:
parent
c11a1bf72a
commit
0c063f85fc
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue