| Index: fusl/src/thread/pthread_rwlock_wrlock.c
|
| diff --git a/fusl/src/thread/pthread_rwlock_wrlock.c b/fusl/src/thread/pthread_rwlock_wrlock.c
|
| index 7f33535c7d9bb08f3fc0ce7db13edc0de70f24a1..c13e87054abddbd01906d46b7216d2041301aa43 100644
|
| --- a/fusl/src/thread/pthread_rwlock_wrlock.c
|
| +++ b/fusl/src/thread/pthread_rwlock_wrlock.c
|
| @@ -1,6 +1,5 @@
|
| #include "pthread_impl.h"
|
|
|
| -int pthread_rwlock_wrlock(pthread_rwlock_t *rw)
|
| -{
|
| - return pthread_rwlock_timedwrlock(rw, 0);
|
| +int pthread_rwlock_wrlock(pthread_rwlock_t* rw) {
|
| + return pthread_rwlock_timedwrlock(rw, 0);
|
| }
|
|
|