This commit is contained in:
Steve Checkoway
2006-12-01 18:17:16 +00:00
parent 8dad4f1ac1
commit 2250322d41
@@ -185,7 +185,7 @@ bool MutexImpl_Pthreads::TryLock()
if( ret == EBUSY )
return false;
if( ret )
RageException::Throw( "pthread_mutex_lock failed: %s", strerror(errno) );
RageException::Throw( "pthread_mutex_trylock failed: %s", strerror(errno) );
return true;
}