You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2002/06/13 16:40:12 UTC

cvs commit: httpd-2.0/modules/experimental cache_pqueue.c

trawick     2002/06/13 07:40:12

  Modified:    modules/experimental cache_pqueue.c
  Log:
  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)
  
  Revision  Changes    Path
  1.2       +1 -1      httpd-2.0/modules/experimental/cache_pqueue.c
  
  Index: cache_pqueue.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/experimental/cache_pqueue.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- cache_pqueue.c	6 Jun 2002 19:07:09 -0000	1.1
  +++ cache_pqueue.c	13 Jun 2002 14:40:11 -0000	1.2
  @@ -237,7 +237,7 @@
       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 */
   }