diff options
author | Caroline Tice <ctice@apple.com> | 2010-10-18 22:38:05 +0000 |
---|---|---|
committer | Caroline Tice <ctice@apple.com> | 2010-10-18 22:38:05 +0000 |
commit | 9bc6dbb027e4de846648e7b64473f39b81f596f5 (patch) | |
tree | edc93423ef479f4d27d3959296b7aa9e0c737a4c /lldb/source/Interpreter/CommandInterpreter.cpp | |
parent | 2b4de14b1d0cbd9f50e37d9b232350853b7e2937 (diff) | |
download | bcm5719-llvm-9bc6dbb027e4de846648e7b64473f39b81f596f5.tar.gz bcm5719-llvm-9bc6dbb027e4de846648e7b64473f39b81f596f5.zip |
Fix small mistake in previous commit (fixing aliases for commands that
take raw input).
llvm-svn: 116760
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 bb2adeb061a..2258ca2f16e 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -555,7 +555,7 @@ CommandInterpreter::HandleCommand if (command_args.GetCommandString (aliased_cmd_str)) { command_line = aliased_cmd_str.c_str(); - command_cstr = command_obj->GetCommandName(); + command_cstr = command_args.GetArgumentAtIndex (0); } } } |