summaryrefslogtreecommitdiff
path: root/locks
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2004-11-27 22:51:47 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2004-11-27 22:51:47 +0000
commitba1c6d38a142935021b76ed16282604b38d0cb4c (patch)
tree077c7eeef32c11c918d1e27e5373a61d4554e575 /locks
parent6325f4c0f5f45af188fdd843616fa479fcc98150 (diff)
downloadlibapr-ba1c6d38a142935021b76ed16282604b38d0cb4c.tar.gz
Fixing various compiler errors when compiling against the latest version of LibC SDK
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@106767 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'locks')
-rw-r--r--locks/netware/thread_mutex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/locks/netware/thread_mutex.c b/locks/netware/thread_mutex.c
index 403e34285..b4f9c66a8 100644
--- a/locks/netware/thread_mutex.c
+++ b/locks/netware/thread_mutex.c
@@ -46,7 +46,7 @@ APR_DECLARE(apr_status_t) apr_thread_mutex_create(apr_thread_mutex_t **mutex,
}
new_mutex->pool = pool;
- new_mutex->mutex = NXMutexAlloc(NX_MUTEX_RECURSIVE, NULL, NULL);
+ new_mutex->mutex = NXMutexAlloc(NX_MUTEX_RECURSIVE, 0, NULL);
if(new_mutex->mutex == NULL)
return APR_ENOMEM;