typo in posix case
This commit is contained in:
parent
891051485d
commit
006ec7931e
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue