aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter/CommandInterpreter.cpp
diff options
context:
space:
mode:
authorMed Ismail Bennani <medismail.bennani@gmail.com>2020-07-22 11:46:44 +0200
committerMed Ismail Bennani <medismail.bennani@gmail.com>2020-07-22 11:48:07 +0200
commit33981c672405979c15e57c8662cad79410b0752b (patch)
treefef56d6082ec8dd70713e6f4337ad13e11efd88e /lldb/source/Interpreter/CommandInterpreter.cpp
parentb49d47f6a0f5bbf293e26d8b918cb46d80f2102f (diff)
downloadllvm-33981c672405979c15e57c8662cad79410b0752b.zip
llvm-33981c672405979c15e57c8662cad79410b0752b.tar.gz
llvm-33981c672405979c15e57c8662cad79410b0752b.tar.bz2
[lldb/interpreter] Fix formatting in CommandInterpreter.cpp (NFC)
This patch addresses some formatting issues introduced by commit 5bb742b10dafd595223172ae985687765934ebe9 Signed-off-by: Med Ismail Bennani <medismail.bennani@gmail.com>
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r--lldb/source/Interpreter/CommandInterpreter.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp
index 1eddf0b..0fd41d1 100644
--- a/lldb/source/Interpreter/CommandInterpreter.cpp
+++ b/lldb/source/Interpreter/CommandInterpreter.cpp
@@ -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;
}