From a1c92fce792ef4984b2454c04fe54798e0c8be77 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Mon, 17 Sep 2001 02:42:01 +0000 Subject: [PATCH] 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 --- modules/filters/mod_include.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.50.1