[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:
Med Ismail Bennani 2020-07-22 11:46:44 +02:00
parent b49d47f6a0
commit 33981c6724
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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;
}