]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix a few warnings on 64 bits windows compilation
authorChristophe Jaillet <jailletc36@apache.org>
Sat, 29 Aug 2020 20:49:36 +0000 (20:49 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Sat, 29 Aug 2020 20:49:36 +0000 (20:49 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1881305 13f79535-47bb-0310-9956-ffa450edef68

modules/cache/mod_cache_disk.c

index 4b1e0227bf3c419ff064549c4c4ccd7b1fca67f5..8d17a195f3c64ca468da74b52bac186b017a4509 100644 (file)
@@ -713,7 +713,7 @@ static apr_status_t read_array(request_rec *r, apr_array_header_t* arr,
                                apr_file_t *file)
 {
     char w[MAX_STRING_LEN];
-    int p;
+    apr_size_t p;
     apr_status_t rv;
 
     while (1) {
@@ -778,7 +778,7 @@ static apr_status_t read_table(cache_handle_t *handle, request_rec *r,
 {
     char w[MAX_STRING_LEN];
     char *l;
-    int p;
+    apr_size_t p;
     apr_status_t rv;
 
     while (1) {