8026784: Error message in AdaptiveFreeList<Chunk>::verify_stats is wrong

Changed faulty error message in the verification code

Reviewed-by: stefank, tschatzl
This commit is contained in:
Andreas Sjoberg 2014-05-06 09:41:04 +02:00 committed by Thomas Schatzl
parent f460a98570
commit 0a39721031

View File

@ -158,7 +158,7 @@ void AdaptiveFreeList<Chunk>::verify_stats() const {
" coal_deaths(" SIZE_FORMAT ")"
" + count(" SSIZE_FORMAT ")",
this, size(), _allocation_stats.prev_sweep(), _allocation_stats.split_births(),
_allocation_stats.split_births(), _allocation_stats.split_deaths(),
_allocation_stats.coal_births(), _allocation_stats.split_deaths(),
_allocation_stats.coal_deaths(), count()));
}
#endif