diff options
Diffstat (limited to 'lldb/source/Interpreter/CommandAlias.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandAlias.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/source/Interpreter/CommandAlias.cpp b/lldb/source/Interpreter/CommandAlias.cpp index 1c11749b591..f31f60f66f7 100644 --- a/lldb/source/Interpreter/CommandAlias.cpp +++ b/lldb/source/Interpreter/CommandAlias.cpp @@ -89,8 +89,9 @@ CommandAlias::CommandAlias(CommandInterpreter &interpreter, StreamString translation_and_help; GetAliasExpansion(sstr); - translation_and_help.Printf("(%s) %s", sstr.GetData(), - GetUnderlyingCommand()->GetHelp().str().c_str()); + translation_and_help.Printf( + "(%s) %s", sstr.GetData(), + GetUnderlyingCommand()->GetHelp().str().c_str()); SetHelp(translation_and_help.GetData()); } } |