| Index: fusl/src/thread/pthread_attr_setdetachstate.c
|
| diff --git a/fusl/src/thread/pthread_attr_setdetachstate.c b/fusl/src/thread/pthread_attr_setdetachstate.c
|
| index 1b7127839a0064fa3633ff6ceb5f1d4e7dd5bc97..36f67054a8d80578288d258aa60305871ea654bf 100644
|
| --- a/fusl/src/thread/pthread_attr_setdetachstate.c
|
| +++ b/fusl/src/thread/pthread_attr_setdetachstate.c
|
| @@ -1,8 +1,8 @@
|
| #include "pthread_impl.h"
|
|
|
| -int pthread_attr_setdetachstate(pthread_attr_t *a, int state)
|
| -{
|
| - if (state > 1U) return EINVAL;
|
| - a->_a_detach = state;
|
| - return 0;
|
| +int pthread_attr_setdetachstate(pthread_attr_t* a, int state) {
|
| + if (state > 1U)
|
| + return EINVAL;
|
| + a->_a_detach = state;
|
| + return 0;
|
| }
|
|
|