compat/atomics: fix atomic_fetch_xor

This commit is contained in:
James Almer
2017-04-02 00:57:17 -03:00
parent cbd2502939
commit 7942907878
5 changed files with 6 additions and 6 deletions

View File

@@ -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)