A style fix for my previous commit.
This commit is contained in:
parent
bb2b4fafae
commit
b4ff1b7295
@ -146,7 +146,7 @@ init_static (pthread_mutex_t *mutex)
|
||||
|
||||
_SPINLOCK(&static_init_lock);
|
||||
|
||||
if ( *mutex == NULL )
|
||||
if (*mutex == NULL)
|
||||
ret = pthread_mutex_init(mutex, NULL);
|
||||
else
|
||||
ret = 0;
|
||||
|
@ -146,7 +146,7 @@ init_static (pthread_mutex_t *mutex)
|
||||
|
||||
_SPINLOCK(&static_init_lock);
|
||||
|
||||
if ( *mutex == NULL )
|
||||
if (*mutex == NULL)
|
||||
ret = pthread_mutex_init(mutex, NULL);
|
||||
else
|
||||
ret = 0;
|
||||
|
@ -146,7 +146,7 @@ init_static (pthread_mutex_t *mutex)
|
||||
|
||||
_SPINLOCK(&static_init_lock);
|
||||
|
||||
if ( *mutex == NULL )
|
||||
if (*mutex == NULL)
|
||||
ret = pthread_mutex_init(mutex, NULL);
|
||||
else
|
||||
ret = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user