Skip to content

Commit

Permalink
vlc_atomic: atomic_compare_exchange_strong_explicit takes 5 parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
fcartegnie committed Jul 22, 2016
1 parent e54bc05 commit 54bda02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/vlc_atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ typedef uintmax_t atomic_uintmax_t;
# define atomic_compare_exchange_strong(object,expected,desired) \
atomic_compare_exchange(object, expected, desired)

# define atomic_compare_exchange_strong_explicit(object,expected,desired,order) \
# define atomic_compare_exchange_strong_explicit(object,expected,desired,order,order_different) \
atomic_compare_exchange_strong(object, expected, desired)

# define atomic_compare_exchange_weak(object,expected,desired) \
Expand Down

0 comments on commit 54bda02

Please sign in to comment.