| Index: fusl/src/thread/pthread_attr_setguardsize.c
|
| diff --git a/fusl/src/thread/pthread_attr_setguardsize.c b/fusl/src/thread/pthread_attr_setguardsize.c
|
| index 9f21d24702fbf3874c26e196943653166bb3f818..6db7957d241709da255130198bbb58d38b188f98 100644
|
| --- a/fusl/src/thread/pthread_attr_setguardsize.c
|
| +++ b/fusl/src/thread/pthread_attr_setguardsize.c
|
| @@ -1,8 +1,8 @@
|
| #include "pthread_impl.h"
|
|
|
| -int pthread_attr_setguardsize(pthread_attr_t *a, size_t size)
|
| -{
|
| - if (size > SIZE_MAX/8) return EINVAL;
|
| - a->_a_guardsize = size - DEFAULT_GUARD_SIZE;
|
| - return 0;
|
| +int pthread_attr_setguardsize(pthread_attr_t* a, size_t size) {
|
| + if (size > SIZE_MAX / 8)
|
| + return EINVAL;
|
| + a->_a_guardsize = size - DEFAULT_GUARD_SIZE;
|
| + return 0;
|
| }
|
|
|