From bf96860e89270ceb2f35ddca46cc6df3ad16c6da Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Sat, 29 Aug 2020 20:58:11 +0000 Subject: [PATCH] Fix a few warnings on 64 bits windows compilation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1881306 13f79535-47bb-0310-9956-ffa450edef68 --- modules/mappers/mod_imagemap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mappers/mod_imagemap.c b/modules/mappers/mod_imagemap.c index e770dcf4e5b..e7d140ed427 100644 --- a/modules/mappers/mod_imagemap.c +++ b/modules/mappers/mod_imagemap.c @@ -319,7 +319,7 @@ static void read_quoted(char **string, char **quoted_part) static const char *imap_url(request_rec *r, const char *base, const char *value) { /* translates a value into a URL. */ - int slen, clen; + apr_size_t slen, clen; char *string_pos = NULL; const char *string_pos_const = NULL; char *directory = NULL; -- 2.47.3