From be4fefc51eb3709889ec49f01c8b8c23f797ba77 Mon Sep 17 00:00:00 2001 From: Graham Leggett Date: Wed, 22 May 2013 16:11:23 +0000 Subject: [PATCH] core: Use a matching counter type. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1485266 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http/http_filters.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; -- 2.40.0