aboutsummaryrefslogtreecommitdiff
path: root/lib
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
parentbb2b4fafaec66794f9d5602f3b7fa9de4e8d05c8 (diff)
downloadsrc-b4ff1b7295fb35340c2b2592a7a28579fcc4a0ed.tar.gz
src-b4ff1b7295fb35340c2b2592a7a28579fcc4a0ed.zip
A style fix for my previous commit.
Notes
Notes: svn path=/head/; revision=38027
Diffstat (limited to 'lib')
-rw-r--r--lib/libc_r/uthread/uthread_mutex.c2
-rw-r--r--lib/libkse/thread/thr_mutex.c2
-rw-r--r--lib/libpthread/thread/thr_mutex.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc_r/uthread/uthread_mutex.c b/lib/libc_r/uthread/uthread_mutex.c
index e765a6bc3616..0461278692f5 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;
diff --git a/lib/libkse/thread/thr_mutex.c b/lib/libkse/thread/thr_mutex.c
index e765a6bc3616..0461278692f5 100644
--- a/lib/libkse/thread/thr_mutex.c
+++ b/lib/libkse/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;
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;