From: Graham Leggett Date: Wed, 22 May 2013 16:11:23 +0000 (+0000) Subject: core: Use a matching counter type. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca85a03307505cabe01065d864474c81739f6728;p=thirdparty%2Fapache%2Fhttpd.git 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 5c761a93c28..7a0b79ee801 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];