From: William A. Rowe Jr Date: Mon, 17 Sep 2001 02:42:01 +0000 (+0000) Subject: Nothing complains when I change these ints for consistency to apr_size_t. X-Git-Tag: 2.0.26~243 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a1c92fce792ef4984b2454c04fe54798e0c8be77;p=apache Nothing complains when I change these ints for consistency to apr_size_t. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91050 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/filters/mod_include.c b/modules/filters/mod_include.c index bbd400ded0..36b34760a5 100644 --- a/modules/filters/mod_include.c +++ b/modules/filters/mod_include.c @@ -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;