diff --git a/src/hotspot/share/runtime/flags/jvmFlagConstraintsCompiler.cpp b/src/hotspot/share/runtime/flags/jvmFlagConstraintsCompiler.cpp index 3305c76fa25..431c852a0cc 100644 --- a/src/hotspot/share/runtime/flags/jvmFlagConstraintsCompiler.cpp +++ b/src/hotspot/share/runtime/flags/jvmFlagConstraintsCompiler.cpp @@ -158,7 +158,7 @@ JVMFlag::Error OnStackReplacePercentageConstraintFunc(intx value, bool verbose) JVMFlag::Error CodeCacheSegmentSizeConstraintFunc(uintx value, bool verbose) { if (!is_power_of_2(value)) { JVMFlag::printError(verbose, - "CodeCacheSegmentSize (%zd) must be " + "CodeCacheSegmentSize (%zu) must be " "a power of two\n", CodeCacheSegmentSize); return JVMFlag::VIOLATES_CONSTRAINT; }