mirror of
https://github.com/apache/httpd.git
synced 2025-08-20 14:14:48 +00:00
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:
4
modules/cache/mod_cache_disk.c
vendored
4
modules/cache/mod_cache_disk.c
vendored
@ -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) {
|
||||
|
Reference in New Issue
Block a user