Commit 9d44f9d4 authored by Jeff Trawick's avatar Jeff Trawick
Browse files

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
parent 2f56c2cd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 */
}