From a3326b129e4fde505bff23910a4509ab7c6dcf90 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Sat, 26 Jan 2002 12:39:49 +0000 Subject: [PATCH] get mod_mem_cache to compile with compilers that bother to check for Function argument assignment between types "int*" and "long*" git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93034 13f79535-47bb-0310-9956-ffa450edef68 --- modules/experimental/mod_mem_cache.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/experimental/mod_mem_cache.c b/modules/experimental/mod_mem_cache.c index 934e22c696..1616171679 100644 --- a/modules/experimental/mod_mem_cache.c +++ b/modules/experimental/mod_mem_cache.c @@ -360,9 +360,9 @@ static int remove_entity(cache_handle_t *h) return OK; } -static int serialize_table( cache_header_tbl_t **obj, - int*nelts, - apr_table_t *table) +static int serialize_table(cache_header_tbl_t **obj, + apr_ssize_t *nelts, + apr_table_t *table) { apr_table_entry_t *elts = (apr_table_entry_t *) table->a.elts; apr_ssize_t i; -- 2.40.0