hotspot/src/share/vm/memory/binaryTreeDictionary.cpp
changeset 22775 52bc5222f5f1
parent 22551 9bf46d16dcc6
child 22884 5cadaf2c3f32
--- a/hotspot/src/share/vm/memory/binaryTreeDictionary.cpp	Mon Feb 10 12:58:09 2014 +0100
+++ b/hotspot/src/share/vm/memory/binaryTreeDictionary.cpp	Tue Dec 10 15:11:02 2013 +0100
@@ -1352,7 +1352,7 @@
 template <class Chunk_t, template <class> class FreeList_t>
 void BinaryTreeDictionary<Chunk_t, FreeList_t>::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());
 }