diff options
Diffstat (limited to 'csu/tst-atomic.c')
-rw-r--r-- | csu/tst-atomic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csu/tst-atomic.c b/csu/tst-atomic.c index 943c050735..6104466739 100644 --- a/csu/tst-atomic.c +++ b/csu/tst-atomic.c @@ -99,10 +99,10 @@ do_test (void) } mem = 64; - if (atomic_exchange (&mem, 31) != 64 + if (atomic_exchange_acq (&mem, 31) != 64 || mem != 31) { - puts ("atomic_exchange test failed"); + puts ("atomic_exchange_acq test failed"); ret = 1; } |