diff options
Diffstat (limited to 'lib/libpthread/thread')
-rw-r--r-- | lib/libpthread/thread/thr_mutex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thr_mutex.c b/lib/libpthread/thread/thr_mutex.c index e765a6b..0461278 100644 --- a/lib/libpthread/thread/thr_mutex.c +++ b/lib/libpthread/thread/thr_mutex.c @@ -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; |