Skip to content

Commit

Permalink
8313795: Fix for JDK-8313564 breaks ppc and s390x builds
Browse files Browse the repository at this point in the history
Reviewed-by: stuefe
  • Loading branch information
RealCLanger committed Aug 4, 2023
1 parent ad6e9e7 commit 6d18529
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hotspot/cpu/ppc/vm_version_ppc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ void VM_Version::print_features() {
if (Verbose) {
if (ContendedPaddingWidth > 0) {
tty->cr();
tty->print_cr("ContendedPaddingWidth " INTX_FORMAT, ContendedPaddingWidth);
tty->print_cr("ContendedPaddingWidth %d", ContendedPaddingWidth);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/cpu/s390/vm_version_s390.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ void VM_Version::print_features_internal(const char* text, bool print_anyway) {
}
if (ContendedPaddingWidth > 0) {
tty->cr();
tty->print_cr("ContendedPaddingWidth " INTX_FORMAT, ContendedPaddingWidth);
tty->print_cr("ContendedPaddingWidth %d", ContendedPaddingWidth);
}
}
}
Expand Down

1 comment on commit 6d18529

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.