| Index: fusl/src/thread/pthread_rwlockattr_setpshared.c
|
| diff --git a/fusl/src/thread/pthread_rwlockattr_setpshared.c b/fusl/src/thread/pthread_rwlockattr_setpshared.c
|
| index e7061973d6d6b1c00a79cd2c3cd4bb04b0f104d7..a7249de2c12eace25077849654bd9e7bd5f3d9a4 100644
|
| --- a/fusl/src/thread/pthread_rwlockattr_setpshared.c
|
| +++ b/fusl/src/thread/pthread_rwlockattr_setpshared.c
|
| @@ -1,8 +1,8 @@
|
| #include "pthread_impl.h"
|
|
|
| -int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *a, int pshared)
|
| -{
|
| - if (pshared > 1U) return EINVAL;
|
| - a->__attr[0] = pshared;
|
| - return 0;
|
| +int pthread_rwlockattr_setpshared(pthread_rwlockattr_t* a, int pshared) {
|
| + if (pshared > 1U)
|
| + return EINVAL;
|
| + a->__attr[0] = pshared;
|
| + return 0;
|
| }
|
|
|