diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectAlias.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectAlias.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectAlias.cpp b/lldb/source/Commands/CommandObjectAlias.cpp index 62ffbf4915e..5c09a2aec0b 100644 --- a/lldb/source/Commands/CommandObjectAlias.cpp +++ b/lldb/source/Commands/CommandObjectAlias.cpp @@ -121,7 +121,7 @@ CommandObjectAlias::Execute } else { - CommandObjectSP command_obj_sp(interpreter.GetCommandSP (actual_command.c_str())); + CommandObjectSP command_obj_sp(interpreter.GetCommandSPExact (actual_command.c_str(), true)); CommandObjectSP subcommand_obj_sp; bool use_subcommand = false; if (command_obj_sp.get()) |