From: Graham Leggett Date: Wed, 22 May 2013 16:11:23 +0000 (+0000) Subject: core: Use a matching counter type. X-Git-Tag: 2.5.0-alpha~5424 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=be4fefc51eb3709889ec49f01c8b8c23f797ba77;p=apache core: Use a matching counter type. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1485266 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_filters.c b/modules/http/http_filters.c index 5c761a93c2..7a0b79ee80 100644 --- a/modules/http/http_filters.c +++ b/modules/http/http_filters.c @@ -91,7 +91,7 @@ typedef struct http_filter_ctx static apr_status_t parse_chunk_size(http_ctx_t *ctx, const char *buffer, apr_size_t len, int linelimit) { - int i = 0; + apr_size_t i = 0; while (i < len) { char c = buffer[i];