summaryrefslogtreecommitdiff
path: root/src/thread/pthread_rwlockattr_setpshared.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/pthread_rwlockattr_setpshared.c')
-rw-r--r--src/thread/pthread_rwlockattr_setpshared.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/pthread_rwlockattr_setpshared.c b/src/thread/pthread_rwlockattr_setpshared.c
index 1f47f093..e7061973 100644
--- a/src/thread/pthread_rwlockattr_setpshared.c
+++ b/src/thread/pthread_rwlockattr_setpshared.c
@@ -3,6 +3,6 @@
int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *a, int pshared)
{
if (pshared > 1U) return EINVAL;
- *(int *)a = pshared;
+ a->__attr[0] = pshared;
return 0;
}