hotspot/src/share/vm/runtime/frame.cpp
changeset 1497 cd3234c89e59
parent 670 ddf3e9583f2f
child 2131 98f9cef66a34
--- a/hotspot/src/share/vm/runtime/frame.cpp	Tue Oct 28 18:02:09 2008 -0700
+++ b/hotspot/src/share/vm/runtime/frame.cpp	Thu Oct 30 17:08:48 2008 -0700
@@ -83,12 +83,12 @@
     intptr_t* src = (intptr_t*) location(r);
     if (src != NULL) {
 
-      r->print();
-      tty->print(" [" INTPTR_FORMAT "] = ", src);
+      r->print_on(st);
+      st->print(" [" INTPTR_FORMAT "] = ", src);
       if (((uintptr_t)src & (sizeof(*src)-1)) != 0) {
-        tty->print_cr("<misaligned>");
+        st->print_cr("<misaligned>");
       } else {
-        tty->print_cr(INTPTR_FORMAT, *src);
+        st->print_cr(INTPTR_FORMAT, *src);
       }
     }
   }