Fix a few warnings on 64 bits windows compilation

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1881305 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Christophe Jaillet
2020-08-29 20:49:36 +00:00
parent 2c94e2b214
commit d2b64c9bc6

View 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) {