]> granicus.if.org Git - apache/commitdiff
core: Use a matching counter type.
authorGraham Leggett <minfrin@apache.org>
Wed, 22 May 2013 16:11:23 +0000 (16:11 +0000)
committerGraham Leggett <minfrin@apache.org>
Wed, 22 May 2013 16:11:23 +0000 (16:11 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1485266 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_filters.c

index 5c761a93c28ac801e7598937e0714e28c774cd65..7a0b79ee801518a75653539444d936cb143e80ff 100644 (file)
@@ -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];