diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectSyntax.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectSyntax.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectSyntax.cpp b/lldb/source/Commands/CommandObjectSyntax.cpp index 6594906..67dee8e 100644 --- a/lldb/source/Commands/CommandObjectSyntax.cpp +++ b/lldb/source/Commands/CommandObjectSyntax.cpp @@ -77,7 +77,7 @@ bool CommandObjectSyntax::DoExecute(Args &command, output_strm.Printf("\nSyntax: %s\n", cmd_obj->GetSyntax()); output_strm.Printf( "(Try 'help %s' for more information on command options syntax.)\n", - cmd_obj->GetCommandName()); + cmd_obj->GetCommandName().str().c_str()); result.SetStatus(eReturnStatusSuccessFinishNoResult); } else { output_strm.Printf("\nSyntax: %s\n", cmd_obj->GetSyntax()); |