8234736: Harmonize parameter order in Atomic - store

Reviewed-by: rehn, dholmes
This commit is contained in:
Stefan Karlsson 2019-11-25 12:30:24 +01:00
parent e527ce4b57
commit 8db2c1158e
32 changed files with 86 additions and 86 deletions

View file

@ -315,7 +315,7 @@ ExceptionCache* ExceptionCache::next() {
}
void ExceptionCache::set_next(ExceptionCache *ec) {
Atomic::store(ec, &_next);
Atomic::store(&_next, ec);
}
//-----------------------------------------------------------------------------