8162427: fix indent in CompileTask::print_tty

Reviewed-by: kvn
This commit is contained in:
Christian Thalinger 2016-07-22 12:47:08 -10:00
parent c52af628ab
commit e94d8e44dd

View File

@ -186,8 +186,10 @@ void CompileTask::print_line_on_error(outputStream* st, char* buf, int buflen) {
void CompileTask::print_tty() {
ttyLocker ttyl; // keep the following output all in one block
// print compiler name if requested
if (CIPrintCompilerName) tty->print("%s:", CompileBroker::compiler_name(comp_level()));
print(tty);
if (CIPrintCompilerName) {
tty->print("%s:", CompileBroker::compiler_name(comp_level()));
}
print(tty);
}
// ------------------------------------------------------------------