diff -r b9a9ed0f8eeb -r d804e148cff8 src/share/vm/oops/method.cpp --- a/src/share/vm/oops/method.cpp Tue Oct 09 10:09:34 2012 -0700 +++ b/src/share/vm/oops/method.cpp Fri Oct 12 09:22:52 2012 -0700 @@ -712,7 +712,8 @@ } if ((TraceDeoptimization || LogCompilation) && (xtty != NULL)) { ttyLocker ttyl; - xtty->begin_elem("make_not_%scompilable thread='%d'", is_osr ? "osr_" : "", (int) os::current_thread_id()); + xtty->begin_elem("make_not_%scompilable thread='" UINTX_FORMAT "'", + is_osr ? "osr_" : "", os::current_thread_id()); xtty->method(this); xtty->stamp(); xtty->end_elem();