mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
8026300: VM warning: increase O_BUFLEN in ostream.hpp -- output truncated occurs with fastdebug VM when printing flags
Fixed wrong print string format Reviewed-by: sla, ccheung
This commit is contained in:
parent
ea73be64ac
commit
3a3cc4bad3
1 changed files with 1 additions and 1 deletions
|
@ -295,7 +295,7 @@ void Flag::print_on(outputStream* st, bool withComments) {
|
|||
else st->print("%-16s", "");
|
||||
}
|
||||
|
||||
st->print("%-20");
|
||||
st->print("%-20s", " ");
|
||||
print_kind(st);
|
||||
|
||||
if (withComments) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue