--- old/src/share/vm/memory/binaryTreeDictionary.cpp 2014-01-30 13:10:50.000000000 +0100 +++ new/src/share/vm/memory/binaryTreeDictionary.cpp 2014-01-30 13:10:50.000000000 +0100 @@ -1352,7 +1352,7 @@ template class FreeList_t> void BinaryTreeDictionary::verify_tree() const { guarantee(root() == NULL || total_free_blocks() == 0 || - total_size() != 0, "_total_size should't be 0?"); + total_size() != 0, "_total_size shouldn't be 0?"); guarantee(root() == NULL || root()->parent() == NULL, "_root shouldn't have parent"); verify_tree_helper(root()); }