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