trawick     01/06/06 19:39:01

  Modified:    locks/unix locks.c
  Log:
  apr_os_thread_t isn't necessarily a ptr; 0 is compatible with
  ptr or integer, but NULL isn't
  
  Revision  Changes    Path
  1.52      +1 -1      apr/locks/unix/locks.c
  
  Index: locks.c
  ===================================================================
  RCS file: /home/cvs/apr/locks/unix/locks.c,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -r1.51 -r1.52
  --- locks.c   2001/06/06 18:11:59     1.51
  +++ locks.c   2001/06/07 02:39:00     1.52
  @@ -244,7 +244,7 @@
       }
   
   #if APR_HAS_THREADS
  -    lock->owner = NULL;
  +    lock->owner = 0;
       lock->owner_ref = 0;
   #endif
       
  
  
  

Reply via email to