Fix 'expeced' typo. This breaks builds relying on
atomic_compare_exchange_strong_explicit.
Signed-off-by: Hugo Lefeuvre <hugo.lefeuvre@neclab.eu>
Reviewed-by: Sharan Santhanam <sharan.santhanam@neclab.eu>
+ __auto_type __atomic_compare_exchange_ptr = (object); \
+ __typeof__ (*__atomic_compare_exchange_ptr) __atomic_compare_exchange_tmp \
+ = (desired); \
-+ __atomic_compare_exchange (__atomic_compare_exchange_ptr, (expeced), \
++ __atomic_compare_exchange (__atomic_compare_exchange_ptr, (expected), \
+ &__atomic_compare_exchange_tmp, \
+ 0, (success), (failure)); \
+ })