| Index: fusl/src/thread/pthread_attr_setinheritsched.c
|
| diff --git a/fusl/src/thread/pthread_attr_setinheritsched.c b/fusl/src/thread/pthread_attr_setinheritsched.c
|
| index c91d8f83cc749acb79b5d9259f97432f54805175..c067de00873d8e13d9f67ac42af2189fbf20fa29 100644
|
| --- a/fusl/src/thread/pthread_attr_setinheritsched.c
|
| +++ b/fusl/src/thread/pthread_attr_setinheritsched.c
|
| @@ -1,8 +1,8 @@
|
| #include "pthread_impl.h"
|
|
|
| -int pthread_attr_setinheritsched(pthread_attr_t *a, int inherit)
|
| -{
|
| - if (inherit > 1U) return EINVAL;
|
| - a->_a_sched = inherit;
|
| - return 0;
|
| +int pthread_attr_setinheritsched(pthread_attr_t* a, int inherit) {
|
| + if (inherit > 1U)
|
| + return EINVAL;
|
| + a->_a_sched = inherit;
|
| + return 0;
|
| }
|
|
|