From: Jeff Trawick Date: Sat, 26 Jan 2002 12:39:49 +0000 (+0000) Subject: get mod_mem_cache to compile with compilers that bother to check for X-Git-Tag: 2.0.31~85 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a3326b129e4fde505bff23910a4509ab7c6dcf90;p=apache 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 --- 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;