hotspot/src/share/vm/memory/universe.hpp
changeset 33105 294e48b4f704
parent 32375 b84c2d16ba53
child 33198 b37ad9fbf681
--- a/hotspot/src/share/vm/memory/universe.hpp	Mon Sep 28 15:05:02 2015 +0200
+++ b/hotspot/src/share/vm/memory/universe.hpp	Tue Sep 29 11:02:08 2015 +0200
@@ -269,7 +269,7 @@
   }
 
   static Klass* typeArrayKlassObj(BasicType t) {
-    assert((uint)t < T_VOID+1, err_msg("range check for type: %s", type2name(t)));
+    assert((uint)t < T_VOID+1, "range check for type: %s", type2name(t));
     assert(_typeArrayKlassObjs[t] != NULL, "domain check");
     return _typeArrayKlassObjs[t];
   }