hotspot/src/share/vm/runtime/signature.cpp
changeset 5403 6b0dd9c75dde
parent 1 489c9b5090e2
child 5426 470c15eda401
--- a/hotspot/src/share/vm/runtime/signature.cpp	Sun Oct 11 16:19:25 2009 -0700
+++ b/hotspot/src/share/vm/runtime/signature.cpp	Thu Apr 22 13:23:15 2010 -0700
@@ -57,7 +57,7 @@
 }
 
 void SignatureIterator::expect(char c) {
-  if (_signature->byte_at(_index) != c) fatal1("expecting %c", c);
+  if (_signature->byte_at(_index) != c) fatal(err_msg("expecting %c", c));
   _index++;
 }