--- old/src/share/vm/memory/allocation.cpp 2015-05-27 21:58:31.150104115 -0400 +++ new/src/share/vm/memory/allocation.cpp 2015-05-27 21:58:29.806027706 -0400 @@ -752,7 +752,7 @@ julong AllocStats::resource_bytes() { return Arena::_bytes_allocated - start_res_bytes; } void AllocStats::print() { tty->print_cr(UINT64_FORMAT " mallocs (" UINT64_FORMAT "MB), " - UINT64_FORMAT" frees (" UINT64_FORMAT "MB), " UINT64_FORMAT "MB resrc", + UINT64_FORMAT " frees (" UINT64_FORMAT "MB), " UINT64_FORMAT "MB resrc", num_mallocs(), alloc_bytes()/M, num_frees(), free_bytes()/M, resource_bytes()/M); }