X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fthread%2Fpthread_barrier_init.c;h=4c3cb28d44c36b04fe6f136af47952fb4840e311;hp=01e8cd6bf655e167d66f9060e73f69721f997656;hb=HEAD;hpb=400c5e5c8307a2ebe44ef1f203f5a15669f20347 diff --git a/src/thread/pthread_barrier_init.c b/src/thread/pthread_barrier_init.c index 01e8cd6b..4c3cb28d 100644 --- a/src/thread/pthread_barrier_init.c +++ b/src/thread/pthread_barrier_init.c @@ -3,6 +3,6 @@ int pthread_barrier_init(pthread_barrier_t *restrict b, const pthread_barrierattr_t *restrict a, unsigned count) { if (count-1 > INT_MAX-1) return EINVAL; - *b = (pthread_barrier_t){ ._b_limit = count-1 | (a?*a:0) }; + *b = (pthread_barrier_t){ ._b_limit = count-1 | (a?a->__attr:0) }; return 0; }