From f728df60f33dd8390f13f987ae5e30421cc34e15 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Wed, 18 May 2016 05:04:44 +0200 Subject: [PATCH] htparser: Fixed bad size_t. --- src/htparser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/htparser.c b/src/htparser.c index bb23539..a738e25 100644 --- a/src/htparser.c +++ b/src/htparser.c @@ -152,7 +152,7 @@ static off_t passdata(struct bufio *in, struct bufio *out, off_t max) static int recvchunks(struct bufio *in, struct bufio *out) { - size_t read, chlen; + ssize_t read, chlen; int c, r; while(1) { -- 2.11.0