From 22ecd4428a74a0e9d535f984072d363da39cb052 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Tue, 21 Jun 2016 17:56:07 +0300 Subject: Fixed compilation warnings --- sapi/cli/php_http_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sapi/cli/php_http_parser.c') diff --git a/sapi/cli/php_http_parser.c b/sapi/cli/php_http_parser.c index 5f8eb3ce0b..59361d0911 100644 --- a/sapi/cli/php_http_parser.c +++ b/sapi/cli/php_http_parser.c @@ -1539,7 +1539,7 @@ size_t php_http_parser_execute (php_http_parser *parser, p += to_read - 1; } - if (to_read == parser->content_length) { + if (to_read == (size_t)parser->content_length) { state = s_chunk_data_almost_done; } -- cgit v1.2.1