mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
A style fix for my previous commit.
This commit is contained in:
parent
bb2b4fafae
commit
b4ff1b7295
3 changed files with 3 additions and 3 deletions
|
|
@ -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…
Reference in a new issue