summaryrefslogtreecommitdiff
path: root/lib/libpthread/thread/thr_mutex.c
diff options
context:
space:
mode:
authorAlexander Langer <alex@FreeBSD.org>1998-08-02 23:07:25 +0000
committerAlexander Langer <alex@FreeBSD.org>1998-08-02 23:07:25 +0000
commitb4ff1b7295fb35340c2b2592a7a28579fcc4a0ed (patch)
tree3e74327c95a817637fb2db14636389c3567645fe /lib/libpthread/thread/thr_mutex.c
parentbb2b4fafaec66794f9d5602f3b7fa9de4e8d05c8 (diff)
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_mutex.c')
-rw-r--r--lib/libpthread/thread/thr_mutex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thr_mutex.c b/lib/libpthread/thread/thr_mutex.c
index e765a6bc3616..0461278692f5 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;