mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
8162427: fix indent in CompileTask::print_tty
Reviewed-by: kvn
This commit is contained in:
parent
c52af628ab
commit
e94d8e44dd
1 changed files with 4 additions and 2 deletions
|
@ -186,8 +186,10 @@ void CompileTask::print_line_on_error(outputStream* st, char* buf, int buflen) {
|
||||||
void CompileTask::print_tty() {
|
void CompileTask::print_tty() {
|
||||||
ttyLocker ttyl; // keep the following output all in one block
|
ttyLocker ttyl; // keep the following output all in one block
|
||||||
// print compiler name if requested
|
// print compiler name if requested
|
||||||
if (CIPrintCompilerName) tty->print("%s:", CompileBroker::compiler_name(comp_level()));
|
if (CIPrintCompilerName) {
|
||||||
print(tty);
|
tty->print("%s:", CompileBroker::compiler_name(comp_level()));
|
||||||
|
}
|
||||||
|
print(tty);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue