commit | 8b5a077f92e230f0a9dfecd8760b551d0ef680d4 | [log] [tgz] |
---|---|---|
author | Caroline Tice <ctice@apple.com> | Mon Oct 18 22:38:05 2010 +0000 |
committer | Caroline Tice <ctice@apple.com> | Mon Oct 18 22:38:05 2010 +0000 |
tree | 47d880358f4e8cb8a9587b70d5f07b371454534c | |
parent | d4e53a91b31563ca601ca7dfcb0c15dc6ab6df82 [diff] [blame] |
Fix small mistake in previous commit (fixing aliases for commands that take raw input). git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@116760 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/CommandInterpreter.cpp b/source/Interpreter/CommandInterpreter.cpp index bb2adeb..2258ca2 100644 --- a/source/Interpreter/CommandInterpreter.cpp +++ b/source/Interpreter/CommandInterpreter.cpp
@@ -555,7 +555,7 @@ 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); } } }