From: Jeff Trawick Date: Thu, 13 Jun 2002 14:40:11 +0000 (+0000) Subject: fix the type of cache_pq_set_null so that it compiles with non-gcc/non-MSC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9d44f9d447f8260d05753d866bcee9f79aa55a84;p=apache fix the type of cache_pq_set_null so that it compiles with non-gcc/non-MSC (I hit the breakage with xlc on AIX) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95642 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/experimental/cache_pqueue.c b/modules/experimental/cache_pqueue.c index e14076ab32..297f8c7e75 100644 --- a/modules/experimental/cache_pqueue.c +++ b/modules/experimental/cache_pqueue.c @@ -237,7 +237,7 @@ void *cache_pq_peek(cache_pqueue_t *q) return d; } -static void cache_pq_set_null( void*d, int val) +static void cache_pq_set_null( void*d, apr_ssize_t val) { /* do nothing */ }