diff options
Diffstat (limited to 'src/thread/pthread_mutex_init.c')
-rw-r--r-- | src/thread/pthread_mutex_init.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/thread/pthread_mutex_init.c b/src/thread/pthread_mutex_init.c index d453543d..6e23df13 100644 --- a/src/thread/pthread_mutex_init.c +++ b/src/thread/pthread_mutex_init.c @@ -3,7 +3,6 @@ int pthread_mutex_init(pthread_mutex_t *m, const pthread_mutexattr_t *a) { memset(m, 0, sizeof *m); - if (a) { - } + if (a) m->_m_type = *a & 3; return 0; } |