Skip to content

Commit 33c3c64

Browse files
committed
[lldb/interpreter] Fix formatting in CommandInterpreter.cpp (NFC)
This patch addresses some formatting issues introduced by commit 5bb742b Signed-off-by: Med Ismail Bennani <[email protected]>
1 parent a6c76a8 commit 33c3c64

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/source/Commands/CommandObjectQuit.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ bool CommandObjectQuit::DoExecute(Args &command, CommandReturnObject &result) {
104104
m_interpreter.BroadcastEvent(event_type);
105105
result.SetStatus(eReturnStatusQuit);
106106

107-
108107
if (m_interpreter.GetSaveSessionOnQuit())
109108
m_interpreter.SaveTranscript(result);
110109

lldb/source/Interpreter/CommandInterpreter.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2938,7 +2938,8 @@ bool CommandInterpreter::SaveTranscript(
29382938
return error_out("Unable to write to destination file",
29392939
"Bytes written do not match transcript size.");
29402940

2941-
result.AppendMessageWithFormat("Session's transcripts saved to %s\n", output_file->c_str());
2941+
result.AppendMessageWithFormat("Session's transcripts saved to %s\n",
2942+
output_file->c_str());
29422943

29432944
return true;
29442945
}

0 commit comments

Comments
 (0)