gregames 02/03/22 10:29:16
Modified: atomic/os390 atomic.c
Log:
apr_atomic_add: sync up parameter types with header file
Revision Changes Path
1.2 +1 -1 apr/atomic/os390/atomic.c
Index: atomic.c
===================================================================
RCS file: /home/cvs/apr/atomic/os390/atomic.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- atomic.c 22 Mar 2002 18:04:47 -0000 1.1
+++ atomic.c 22 Mar 2002 18:29:16 -0000 1.2
@@ -58,7 +58,7 @@
#if APR_HAS_THREADS
-apr_atomic_t apr_atomic_add(apr_atomic_t *mem, apr_uint32_t val)
+apr_int32_t apr_atomic_add(apr_atomic_t *mem, apr_int32_t val)
{
apr_atomic_t old, new_val;