1
0
Fork 0

try to pacify some compilers

This commit is contained in:
Jan Steemann 2015-07-14 08:50:29 +02:00
parent 7fcb007237
commit cc27e9b88f
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ void TRI_UnlockMutex (TRI_mutex_t* mutex) {
////////////////////////////////////////////////////////////////////////////////
void TRI_InitSpin (TRI_spin_t* spinLock) {
pthread_spin_init(spinLock, nullptr);
pthread_spin_init(spinLock, 0);
}
////////////////////////////////////////////////////////////////////////////////