Browse Source

typo in posix case

David Rose 16 years ago
parent
commit
006ec7931e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/plugin/p3dConditionVar.cxx

+ 1 - 1
direct/src/plugin/p3dConditionVar.cxx

@@ -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