8132969: C++11 requires a space between literal and identifier
authorctornqvi
Tue, 04 Aug 2015 06:52:46 -0700
changeset 32178 568a8854ff71
parent 32081 43cb85a46633
child 32180 804ef683593b
8132969: C++11 requires a space between literal and identifier Reviewed-by: simonis, ctornqvi Contributed-by: Matthias Baesken <matthias.baesken@sap.com>
hotspot/src/share/vm/interpreter/interpreterRuntime.cpp
--- a/hotspot/src/share/vm/interpreter/interpreterRuntime.cpp	Tue Aug 04 12:58:54 2015 +0200
+++ b/hotspot/src/share/vm/interpreter/interpreterRuntime.cpp	Tue Aug 04 06:52:46 2015 -0700
@@ -1303,7 +1303,7 @@
   if (handler_index < 0) {
     if (PrintSignatureHandlers && (handler != Interpreter::slow_signature_handler())) {
       tty->cr();
-      tty->print_cr("argument handler #%d at "PTR_FORMAT" for fingerprint " UINT64_FORMAT,
+      tty->print_cr("argument handler #%d at " PTR_FORMAT " for fingerprint " UINT64_FORMAT,
                     _handlers->length(),
                     handler,
                     fingerprint);
@@ -1313,7 +1313,7 @@
   } else {
     if (PrintSignatureHandlers) {
       tty->cr();
-      tty->print_cr("duplicate argument handler #%d for fingerprint " UINT64_FORMAT "(old: "PTR_FORMAT", new : "PTR_FORMAT")",
+      tty->print_cr("duplicate argument handler #%d for fingerprint " UINT64_FORMAT "(old: " PTR_FORMAT ", new : " PTR_FORMAT ")",
                     _handlers->length(),
                     fingerprint,
                     _handlers->at(handler_index),