diff options
author | Jim Ingham <jingham@apple.com> | 2016-12-15 00:30:30 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2016-12-15 00:30:30 +0000 |
commit | 8f7db52d9d16dc1fe7bcc236a5e8681fff2e4209 (patch) | |
tree | 16590d38c14063eb57f22faffa70a8bde239bbfd /lldb/source/Interpreter/CommandInterpreter.cpp | |
parent | c4e9482164d3908fd3d62fddce271b4719ee8925 (diff) | |
download | bcm5719-llvm-8f7db52d9d16dc1fe7bcc236a5e8681fff2e4209.tar.gz bcm5719-llvm-8f7db52d9d16dc1fe7bcc236a5e8681fff2e4209.zip |
Fix incorrectly named variables.
llvm-svn: 289746
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index a8055725bd2..d44eb25848d 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -1527,7 +1527,7 @@ bool CommandInterpreter::HandleCommand(const char *command_line, std::string original_command_string(command_line); Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_COMMANDS)); - llvm::PrettyStackTraceFormat PST("HandleCommand(command = \"%s\")", + llvm::PrettyStackTraceFormat stack_trace("HandleCommand(command = \"%s\")", command_line); if (log) |