From: Christophe Jaillet Date: Sat, 29 Aug 2020 20:58:11 +0000 (+0000) Subject: Fix a few warnings on 64 bits windows compilation X-Git-Tag: 2.5.0-alpha2-ci-test-only~1220 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf96860e89270ceb2f35ddca46cc6df3ad16c6da;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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;