typo in posix case

This commit is contained in:
David Rose 2009-07-03 01:31:13 +00:00
parent 891051485d
commit 006ec7931e
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ wait() {
EnterCriticalSection(&_lock);
#else // _WIN32
int result = pthread_cond_wait(&_cvar, &_mutex._lock);
int result = pthread_cond_wait(&_cvar, &_lock);
assert(result == 0);
#endif // _WIN32