8269615: Fix for 8263640 broke Windows build

Reviewed-by: iklam, dcubed
This commit is contained in:
Calvin Cheung 2021-06-29 19:52:06 +00:00
parent 7ca753bf0c
commit 1ac8deef4c

View File

@ -1116,7 +1116,7 @@ void Arguments::print_on(outputStream* st) {
if (len == 0) {
st->print_raw_cr("<not set>");
} else {
st->print_raw_cr(path, len);
st->print_raw_cr(path, (int)len);
}
}
st->print_cr("Launcher Type: %s", _sun_java_launcher);