Index: lldb/source/Core/Debugger.cpp =================================================================== --- lldb/source/Core/Debugger.cpp +++ lldb/source/Core/Debugger.cpp @@ -1779,8 +1779,9 @@ // Determine whether the current output file is an interactive terminal with // color support. We assume that if we support ANSI escape codes we support // vt100 escape codes. - File &output = GetOutputFile(); - if (!output.GetIsInteractive() || !output.GetIsTerminalWithColors()) + StreamFile &output = GetOutputStream(); + File &output_file = output.GetFile(); + if (!output_file.GetIsInteractive() || !output_file.GetIsTerminalWithColors()) return; // Print over previous line, if any.