| Index: fusl/src/thread/pthread_rwlockattr_init.c
|
| diff --git a/fusl/src/thread/pthread_rwlockattr_init.c b/fusl/src/thread/pthread_rwlockattr_init.c
|
| index e742069447d6c14a0a6dbab6622689a9279294f3..980f86b466c92ee5a2bf3216ef1ab9b75631d39d 100644
|
| --- a/fusl/src/thread/pthread_rwlockattr_init.c
|
| +++ b/fusl/src/thread/pthread_rwlockattr_init.c
|
| @@ -1,7 +1,6 @@
|
| #include "pthread_impl.h"
|
|
|
| -int pthread_rwlockattr_init(pthread_rwlockattr_t *a)
|
| -{
|
| - *a = (pthread_rwlockattr_t){0};
|
| - return 0;
|
| +int pthread_rwlockattr_init(pthread_rwlockattr_t* a) {
|
| + *a = (pthread_rwlockattr_t){0};
|
| + return 0;
|
| }
|
|
|