# HG changeset patch # User Tom Rodriguez # Date 1441213986 25200 # Node ID 693e1df2b8084cc721da9d58f7df72fb062f928c # Parent 363cba9482db06a64ec526ea93bedb960a61ca1f Add spaces around format macros diff -r 363cba9482db -r 693e1df2b808 src/share/vm/jvmci/jvmciRuntime.cpp --- a/src/share/vm/jvmci/jvmciRuntime.cpp Wed Sep 02 14:11:48 2015 +0200 +++ b/src/share/vm/jvmci/jvmciRuntime.cpp Wed Sep 02 10:13:06 2015 -0700 @@ -498,12 +498,12 @@ JRT_LEAF(jboolean, JVMCIRuntime::validate_object(JavaThread* thread, oopDesc* parent, oopDesc* child)) bool ret = true; if(!Universe::heap()->is_in_closed_subset(parent)) { - tty->print_cr("Parent Object "INTPTR_FORMAT" not in heap", p2i(parent)); + tty->print_cr("Parent Object " INTPTR_FORMAT " not in heap", p2i(parent)); parent->print(); ret=false; } if(!Universe::heap()->is_in_closed_subset(child)) { - tty->print_cr("Child Object "INTPTR_FORMAT" not in heap", p2i(child)); + tty->print_cr("Child Object " INTPTR_FORMAT " not in heap", p2i(child)); child->print(); ret=false; }