From 16648480ac5b9c4a9968d7ef809123aa3651fab8 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Thu, 13 Jun 2002 14:40:11 +0000 Subject: [PATCH] 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 --- modules/experimental/cache_pqueue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ } -- 2.40.0