Fixed compilation warnings

This commit is contained in:
Dmitry Stogov 2016-06-21 17:56:07 +03:00
parent 307e6b7ac9
commit 22ecd4428a
12 changed files with 51 additions and 36 deletions

View file

@ -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;
}