mirror of
https://github.com/moparisthebest/curl
synced 2025-03-11 07:39:50 -04: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
@ -96,8 +96,8 @@ void Curl_httpchunk_init(struct connectdata *conn)
|
|||||||
*/
|
*/
|
||||||
CHUNKcode Curl_httpchunk_read(struct connectdata *conn,
|
CHUNKcode Curl_httpchunk_read(struct connectdata *conn,
|
||||||
char *datap,
|
char *datap,
|
||||||
ssize_t length,
|
size_t length,
|
||||||
ssize_t *wrote)
|
size_t *wrote)
|
||||||
{
|
{
|
||||||
CURLcode result;
|
CURLcode result;
|
||||||
struct Curl_chunker *ch = &conn->proto.http->chunk;
|
struct Curl_chunker *ch = &conn->proto.http->chunk;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user