summaryrefslogtreecommitdiff
path: root/compat/atomics/pthread
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-04-02 00:57:17 -0300
committerJames Almer <jamrial@gmail.com>2017-04-02 00:57:17 -0300
commit7942907878dd4c263ba7431067c33ce6b5d53ceb (patch)
treead43093070195495a764fb907a1418fa1c0b71a8 /compat/atomics/pthread
parentcbd25029399873ef6ff2c7344efbfb0c74b12e37 (diff)
compat/atomics: fix atomic_fetch_xor
Diffstat (limited to 'compat/atomics/pthread')
-rw-r--r--compat/atomics/pthread/stdatomic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/atomics/pthread/stdatomic.h b/compat/atomics/pthread/stdatomic.h
index 1b7278e4fd..81a60f102b 100644
--- a/compat/atomics/pthread/stdatomic.h
+++ b/compat/atomics/pthread/stdatomic.h
@@ -177,7 +177,7 @@ FETCH_MODIFY(and, &)
atomic_fetch_or(object, operand)
#define atomic_fetch_xor_explicit(object, operand, order) \
- atomic_fetch_sub(object, operand)
+ atomic_fetch_xor(object, operand)
#define atomic_fetch_and_explicit(object, operand, order) \
atomic_fetch_and(object, operand)