You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by br...@apache.org on 2002/10/19 20:06:59 UTC

cvs commit: apr/atomic/unix apr_atomic.c

brianp      2002/10/19 11:06:59

  Modified:    atomic/unix apr_atomic.c
  Log:
  fix an old typo and a bad cut-and-paste
  
  Revision  Changes    Path
  1.20      +2 -2      apr/atomic/unix/apr_atomic.c
  
  Index: apr_atomic.c
  ===================================================================
  RCS file: /home/cvs/apr/atomic/unix/apr_atomic.c,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- apr_atomic.c	1 Sep 2002 17:15:05 -0000	1.19
  +++ apr_atomic.c	19 Oct 2002 18:06:59 -0000	1.20
  @@ -158,7 +158,7 @@
   }
   #endif /*!defined(apr_atomic_dec) && !defined(APR_OVERRIDE_ATOMIC_DEC) */
   
  -#if !defined(apr_atomic_cas) && !defined(APR_OVERRIDE_ATOMIC_CASE)
  +#if !defined(apr_atomic_cas) && !defined(APR_OVERRIDE_ATOMIC_CAS)
   apr_uint32_t apr_atomic_cas(volatile apr_uint32_t *mem, long with, long cmp)
   {
       long prev;
  @@ -182,4 +182,4 @@
       return prev;
   #endif /* APR_HAS_THREADS */
   }
  -#endif /*!defined(apr_atomic_dec) && !defined(APR_OVERRIDE_ATOMIC_DEC) */
  +#endif /*!defined(apr_atomic_cas) && !defined(APR_OVERRIDE_ATOMIC_CAS) */