about summary refs log tree commit diff
path: root/src/thread/pthread_condattr_setpshared.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/pthread_condattr_setpshared.c')
-rw-r--r--src/thread/pthread_condattr_setpshared.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thread/pthread_condattr_setpshared.c b/src/thread/pthread_condattr_setpshared.c
index c0cc1ef9..bece8a26 100644
--- a/src/thread/pthread_condattr_setpshared.c
+++ b/src/thread/pthread_condattr_setpshared.c
@@ -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;
 }