make pthread attribute types structs, even when they just have one field
[musl] / src / thread / pthread_condattr_setpshared.c
index c0cc1ef..bece8a2 100644 (file)
@@ -3,7 +3,7 @@
 int pthread_condattr_setpshared(pthread_condattr_t *a, int pshared)
 {
        if (pshared > 1U) return EINVAL;
-       *a &= 0x7fffffff;
-       *a |= pshared<<31;
+       a->__attr &= 0x7fffffff;
+       a->__attr |= pshared<<31;
        return 0;
 }