< prev index next >

src/share/vm/gc/g1/heapRegion.inline.hpp

Print this page

        

@@ -130,14 +130,14 @@
   if (block_is_obj(addr)) {
     return oop(addr)->size();
   }
 
   assert(ClassUnloadingWithConcurrentMark,
-      err_msg("All blocks should be objects if G1 Class Unloading isn't used. "
+         "All blocks should be objects if G1 Class Unloading isn't used. "
               "HR: [" PTR_FORMAT ", " PTR_FORMAT ", " PTR_FORMAT ") "
               "addr: " PTR_FORMAT,
-              p2i(bottom()), p2i(top()), p2i(end()), p2i(addr)));
+         p2i(bottom()), p2i(top()), p2i(end()), p2i(addr));
 
   // Old regions' dead objects may have dead classes
   // We need to find the next live object in some other
   // manner than getting the oop size
   G1CollectedHeap* g1h = G1CollectedHeap::heap();
< prev index next >