diff options
author | Guenter Knauf <fuankg@apache.org> | 2011-02-26 10:42:38 +0000 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2011-02-26 10:42:38 +0000 |
commit | cf472c29143d6194a36970d688220af503db4bad (patch) | |
tree | d2755bf158f8f995b7a9e634334eb7b0b10d1dde /locks | |
parent | a4df770dfa9bd32b3270197825d5db94dccec0ae (diff) | |
download | apr-cf472c29143d6194a36970d688220af503db4bad.tar.gz |
Axed C++ comments and tabs.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.5.x@1074820 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'locks')
-rw-r--r-- | locks/netware/thread_rwlock.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/locks/netware/thread_rwlock.c b/locks/netware/thread_rwlock.c index d0bf3ddf3..f971aefd4 100644 --- a/locks/netware/thread_rwlock.c +++ b/locks/netware/thread_rwlock.c @@ -34,12 +34,12 @@ APR_DECLARE(apr_status_t) apr_thread_rwlock_create(apr_thread_rwlock_t **rwlock, { apr_thread_rwlock_t *new_rwlock = NULL; - NXHierarchy_t hierarchy = 1; //for libc NKS NXRwLockAlloc - NXLockInfo_t *info; //for libc NKS NXRwLockAlloc + NXHierarchy_t hierarchy = 1; /* for libc NKS NXRwLockAlloc */ + NXLockInfo_t *info; /* for libc NKS NXRwLockAlloc */ new_rwlock = (apr_thread_rwlock_t *)apr_pcalloc(pool, sizeof(apr_thread_rwlock_t)); - - if(new_rwlock ==NULL) { + + if(new_rwlock ==NULL) { return APR_ENOMEM; } new_rwlock->pool = pool; |