[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 c9fb59acc83f43a76b97f28738c0b657555175c7..d4d15bea9a8ea0c2f2193ed34e06e16705d9cf0a 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 1eddf0b5fa124ad4178b2030a8c2e6ea952a3cb7..0fd41d1be897dd4a8a978bd67d612bc6f82bc02c 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;
 }