diff options
author | rpj <rpj> | 2001-02-08 16:31:20 +0000 |
---|---|---|
committer | rpj <rpj> | 2001-02-08 16:31:20 +0000 |
commit | 2b3eede0b834a82c7dce5ec328f3929c0effc536 (patch) | |
tree | 24414750f16e0c7bc7d231139d7f20a76b512ae4 /rwlock.c | |
parent | 3c0fbfafe563b7b312d60c42c0d58a3a1f4d5930 (diff) |
Fixes to new mutex routines and various tests.exp-2001-02-09-passed
Diffstat (limited to 'rwlock.c')
-rw-r--r-- | rwlock.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -352,7 +352,7 @@ pthread_rwlock_wrlock(pthread_rwlock_t * rwlock) rwl = *rwlock; - if (rwl->nMagic != RWLOCK_MAGIC) + if (rwl->nMagic != PTW32_RWLOCK_MAGIC) { return EINVAL; } |