fix missing parenthesis

This commit is contained in:
Riccardo Mottola 2018-05-30 00:40:34 +02:00
parent 793e5cd5c9
commit 62511eeca2

View file

@ -40,7 +40,7 @@
#if !(HAVE_PTHREAD_SPIN_LOCK)
#warning no spin_locks, using dummy versions
typedef int pthread_spinlock_t;
int pthread_spin_init(pthread_spinlock_t *lock, int pshared
int pthread_spin_init(pthread_spinlock_t *lock, int pshared)
{
NSDebugLog(@"NSThread.m: Warning this platform does not support spin locks");
return 0;