]> granicus.if.org Git - apache/commitdiff
fix the type of cache_pq_set_null so that it compiles with non-gcc/non-MSC
authorJeff Trawick <trawick@apache.org>
Thu, 13 Jun 2002 14:40:11 +0000 (14:40 +0000)
committerJeff Trawick <trawick@apache.org>
Thu, 13 Jun 2002 14:40:11 +0000 (14:40 +0000)
(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

index e14076ab32f7bcdb01ac6a204aea42221331784c..297f8c7e75aa25d50f2337d8dd10a34cf02f6670 100644 (file)
@@ -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 */
 }