From 2c94e2b214f49fe0ae3524d656ada167917e22bd Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Sat, 29 Aug 2020 20:44:03 +0000 Subject: [PATCH] Fix a few warnings on 64 bits windows compilation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1881304 13f79535-47bb-0310-9956-ffa450edef68 --- modules/cache/cache_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cache/cache_util.c b/modules/cache/cache_util.c index 95a89837be9..33abc969fdb 100644 --- a/modules/cache/cache_util.c +++ b/modules/cache/cache_util.c @@ -32,7 +32,7 @@ extern module AP_MODULE_DECLARE_DATA cache_module; /* Determine if "url" matches the hostname, scheme and port and path * in "filter". All but the path comparisons are case-insensitive. */ -static int uri_meets_conditions(const apr_uri_t *filter, const int pathlen, +static int uri_meets_conditions(const apr_uri_t *filter, const apr_size_t pathlen, const apr_uri_t *url, const char *path) { /* Scheme, hostname port and local part. The filter URI and the -- 2.47.3