diff options
| author | Zachary Turner <zturner@google.com> | 2016-11-15 00:45:23 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2016-11-15 00:45:23 +0000 |
| commit | 0fe35b158ff3f63c0c86a2e97bb52b02076724e3 (patch) | |
| tree | 227d9ea9fa6d2778a37c4f95a813e7b238537f86 | |
| parent | 1e8016b2ea9914b61c9cd6fd0c95d425698475e3 (diff) | |
| download | bcm5719-llvm-0fe35b158ff3f63c0c86a2e97bb52b02076724e3.tar.gz bcm5719-llvm-0fe35b158ff3f63c0c86a2e97bb52b02076724e3.zip | |
Fix some more Printf warnings.
llvm-svn: 286916
| -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()); } } |

