hotspot/src/share/vm/code/exceptionHandlerTable.cpp
changeset 31592 43f48e165466
parent 24424 2658d7834c6e
child 33160 c59f1676d27e
child 33105 294e48b4f704
--- a/hotspot/src/share/vm/code/exceptionHandlerTable.cpp	Wed Jun 24 14:28:30 2015 +0000
+++ b/hotspot/src/share/vm/code/exceptionHandlerTable.cpp	Wed Jun 24 12:12:25 2015 -0400
@@ -186,7 +186,7 @@
 void ImplicitExceptionTable::print(address base) const {
   tty->print("{");
   for( uint i=0; i<len(); i++ )
-    tty->print("< "INTPTR_FORMAT", "INTPTR_FORMAT" > ",base + *adr(i), base + *(adr(i)+1));
+    tty->print("< " INTPTR_FORMAT ", " INTPTR_FORMAT " > ",base + *adr(i), base + *(adr(i)+1));
   tty->print_cr("}");
 }