diff options
author | James Almer <jamrial@gmail.com> | 2017-04-02 00:57:17 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-04-02 00:57:17 -0300 |
commit | 7942907878dd4c263ba7431067c33ce6b5d53ceb (patch) | |
tree | ad43093070195495a764fb907a1418fa1c0b71a8 /compat/atomics/dummy | |
parent | cbd25029399873ef6ff2c7344efbfb0c74b12e37 (diff) | |
download | ffmpeg-streaming-7942907878dd4c263ba7431067c33ce6b5d53ceb.zip ffmpeg-streaming-7942907878dd4c263ba7431067c33ce6b5d53ceb.tar.gz |
compat/atomics: fix atomic_fetch_xor
Diffstat (limited to 'compat/atomics/dummy')
-rw-r--r-- | compat/atomics/dummy/stdatomic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/atomics/dummy/stdatomic.h b/compat/atomics/dummy/stdatomic.h index c26f629..59d85f9 100644 --- a/compat/atomics/dummy/stdatomic.h +++ b/compat/atomics/dummy/stdatomic.h @@ -156,7 +156,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) |