summaryrefslogtreecommitdiff
path: root/src/thread/pthread_condattr_setclock.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/pthread_condattr_setclock.c')
-rw-r--r--src/thread/pthread_condattr_setclock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thread/pthread_condattr_setclock.c b/src/thread/pthread_condattr_setclock.c
index cd2cecc9..71125941 100644
--- a/src/thread/pthread_condattr_setclock.c
+++ b/src/thread/pthread_condattr_setclock.c
@@ -3,7 +3,7 @@
int pthread_condattr_setclock(pthread_condattr_t *a, clockid_t clk)
{
if (clk < 0 || clk-2U < 2) return EINVAL;
- *a &= 0x80000000;
- *a |= clk;
+ a->__attr &= 0x80000000;
+ a->__attr |= clk;
return 0;
}