8039244: Don't use UINT32_FORMAT and INT32_FORMAT when printing uints and ints in the GC code

Reviewed-by: brutisso, tschatzl
This commit is contained in:
Stefan Karlsson 2014-04-04 09:46:10 +02:00
parent 034d486b08
commit 6583b826bb
10 changed files with 37 additions and 38 deletions

View file

@ -239,8 +239,8 @@ ParallelTaskTerminator::offer_termination(TerminatorTerminator* terminator) {
#ifdef TRACESPINNING
void ParallelTaskTerminator::print_termination_counts() {
gclog_or_tty->print_cr("ParallelTaskTerminator Total yields: " UINT32_FORMAT
" Total spins: " UINT32_FORMAT " Total peeks: " UINT32_FORMAT,
gclog_or_tty->print_cr("ParallelTaskTerminator Total yields: %u"
" Total spins: %u Total peeks: %u",
total_yields(),
total_spins(),
total_peeks());