hotspot/src/share/vm/runtime/vmThread.cpp
changeset 33105 294e48b4f704
parent 30764 fec48bf5a827
child 33148 68fa8b6c4340
--- a/hotspot/src/share/vm/runtime/vmThread.cpp	Mon Sep 28 15:05:02 2015 +0200
+++ b/hotspot/src/share/vm/runtime/vmThread.cpp	Tue Sep 29 11:02:08 2015 +0200
@@ -630,8 +630,8 @@
       // Check the VM operation allows nested VM operation. This normally not the case, e.g., the compiler
       // does not allow nested scavenges or compiles.
       if (!prev_vm_operation->allow_nested_vm_operations()) {
-        fatal(err_msg("Nested VM operation %s requested by operation %s",
-                      op->name(), vm_operation()->name()));
+        fatal("Nested VM operation %s requested by operation %s",
+              op->name(), vm_operation()->name());
       }
       op->set_calling_thread(prev_vm_operation->calling_thread(), prev_vm_operation->priority());
     }