Skip to content

Commit ffb71e4

Browse files
Kim Barrettdougxc
authored andcommitted
8361086: JVMCIGlobals::check_jvmci_flags_are_consistent has incorrect format string
Reviewed-by: kvn, mhaessig, yzheng (cherry picked from commit c6448dc)
1 parent 6dc8bf3 commit ffb71e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hotspot/share/jvmci/jvmci_globals.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ bool JVMCIGlobals::check_jvmci_flags_are_consistent() {
106106
}
107107
if (BootstrapJVMCI && (TieredStopAtLevel < CompLevel_full_optimization)) {
108108
jio_fprintf(defaultStream::error_stream(),
109-
"-XX:+BootstrapJVMCI is not compatible with -XX:TieredStopAtLevel=%d\n", TieredStopAtLevel);
109+
"-XX:+BootstrapJVMCI is not compatible with -XX:TieredStopAtLevel=%zd\n", TieredStopAtLevel);
110110
return false;
111111
}
112112
}

0 commit comments

Comments
 (0)