]> granicus.if.org Git - apache/commitdiff
Nothing complains when I change these ints for consistency to apr_size_t.
authorWilliam A. Rowe Jr <wrowe@apache.org>
Mon, 17 Sep 2001 02:42:01 +0000 (02:42 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Mon, 17 Sep 2001 02:42:01 +0000 (02:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91050 13f79535-47bb-0310-9956-ffa450edef68

modules/filters/mod_include.c

index bbd400ded0ed8f5633103b5843f1a0a46bd27925..36b34760a5830d8947ed365cc42596b28db4efee 100644 (file)
@@ -324,8 +324,8 @@ static apr_bucket *find_start_sequence(apr_bucket *dptr, include_ctx_t *ctx,
     const char *c;
     const char *buf;
     const char *str = STARTING_SEQUENCE;
-    int slen = sizeof(STARTING_SEQUENCE) - 1;
-    int pos;
+    apr_size_t slen = sizeof(STARTING_SEQUENCE) - 1;
+    apr_size_t pos;
 
     *do_cleanup = 0;