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);
                         }
                     }
                 }