Commit b2747034 authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/atomic: use av_assert0()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent eaa5882e
......@@ -105,7 +105,7 @@ void *avpriv_atomic_ptr_cas(void * volatile *ptr, void *oldval, void *newval)
#endif /* !HAVE_MEMORYBARRIER && !HAVE_SYNC_VAL_COMPARE_AND_SWAP && !HAVE_MACHINE_RW_BARRIER */
#ifdef TEST
#include <assert.h>
#include "avassert.h"
int main(void)
{
......@@ -113,10 +113,10 @@ int main(void)
int res;
res = avpriv_atomic_int_add_and_fetch(&val, 1);
assert(res == 2);
av_assert0(res == 2);
avpriv_atomic_int_set(&val, 3);
res = avpriv_atomic_int_get(&val);
assert(res == 3);
av_assert0(res == 3);
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment