diff options
| author | Zachary Turner <zturner@google.com> | 2016-11-15 00:45:18 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2016-11-15 00:45:18 +0000 |
| commit | 1e8016b2ea9914b61c9cd6fd0c95d425698475e3 (patch) | |
| tree | 8322d78335c1aa55c4b8ce3c2d5357b947924564 /lldb/source/Interpreter/CommandAlias.cpp | |
| parent | f7009b42f8a9d916f0ed69274089fae32e5a1bbc (diff) | |
| download | bcm5719-llvm-1e8016b2ea9914b61c9cd6fd0c95d425698475e3.tar.gz bcm5719-llvm-1e8016b2ea9914b61c9cd6fd0c95d425698475e3.zip | |
Fix some more StringRef printf warnings.
llvm-svn: 286915
Diffstat (limited to 'lldb/source/Interpreter/CommandAlias.cpp')
| -rw-r--r-- | lldb/source/Interpreter/CommandAlias.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandAlias.cpp b/lldb/source/Interpreter/CommandAlias.cpp index d774a4ee477..1c11749b591 100644 --- a/lldb/source/Interpreter/CommandAlias.cpp +++ b/lldb/source/Interpreter/CommandAlias.cpp @@ -90,7 +90,7 @@ CommandAlias::CommandAlias(CommandInterpreter &interpreter, GetAliasExpansion(sstr); translation_and_help.Printf("(%s) %s", sstr.GetData(), - GetUnderlyingCommand()->GetHelp()); + GetUnderlyingCommand()->GetHelp().str().c_str()); SetHelp(translation_and_help.GetData()); } } |

