hotspot/src/share/vm/gc/g1/g1Allocator.inline.hpp
changeset 33105 294e48b4f704
parent 32378 8dd0e7359751
child 46285 5b673a9fa682
--- a/hotspot/src/share/vm/gc/g1/g1Allocator.inline.hpp	Mon Sep 28 15:05:02 2015 +0200
+++ b/hotspot/src/share/vm/gc/g1/g1Allocator.inline.hpp	Tue Sep 29 11:02:08 2015 +0200
@@ -36,7 +36,7 @@
 HeapWord* G1Allocator::attempt_allocation_locked(size_t word_size, AllocationContext_t context) {
   HeapWord* result = mutator_alloc_region(context)->attempt_allocation_locked(word_size, false /* bot_updates */);
   assert(result != NULL || mutator_alloc_region(context)->get() == NULL,
-         err_msg("Must not have a mutator alloc region if there is no memory, but is " PTR_FORMAT, p2i(mutator_alloc_region(context)->get())));
+         "Must not have a mutator alloc region if there is no memory, but is " PTR_FORMAT, p2i(mutator_alloc_region(context)->get()));
   return result;
 }