forked from OSchip/llvm-project
[lldb/interpreter] Fix formatting in CommandInterpreter.cpp (NFC)
This patch addresses some formatting issues introduced by commit
5bb742b10d
Signed-off-by: Med Ismail Bennani <medismail.bennani@gmail.com>
This commit is contained in:
parent
b49d47f6a0
commit
33981c6724
|
@ -104,7 +104,6 @@ bool CommandObjectQuit::DoExecute(Args &command, CommandReturnObject &result) {
|
|||
m_interpreter.BroadcastEvent(event_type);
|
||||
result.SetStatus(eReturnStatusQuit);
|
||||
|
||||
|
||||
if (m_interpreter.GetSaveSessionOnQuit())
|
||||
m_interpreter.SaveTranscript(result);
|
||||
|
||||
|
|
|
@ -2938,7 +2938,8 @@ bool CommandInterpreter::SaveTranscript(
|
|||
return error_out("Unable to write to destination file",
|
||||
"Bytes written do not match transcript size.");
|
||||
|
||||
result.AppendMessageWithFormat("Session's transcripts saved to %s\n", output_file->c_str());
|
||||
result.AppendMessageWithFormat("Session's transcripts saved to %s\n",
|
||||
output_file->c_str());
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue