[lldb/interpreter] Fix formatting in CommandInterpreter.cpp (NFC)
authorMed Ismail Bennani <medismail.bennani@gmail.com>
Wed, 22 Jul 2020 09:46:44 +0000 (11:46 +0200)
committerMed Ismail Bennani <medismail.bennani@gmail.com>
Wed, 22 Jul 2020 09:48:07 +0000 (11:48 +0200)
This patch addresses some formatting issues introduced by commit
5bb742b10dafd595223172ae985687765934ebe9

Signed-off-by: Med Ismail Bennani <medismail.bennani@gmail.com>
lldb/source/Commands/CommandObjectQuit.cpp
lldb/source/Interpreter/CommandInterpreter.cpp

index c9fb59a..d4d15be 100644 (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);
 
index 1eddf0b..0fd41d1 100644 (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;
 }