diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectQuit.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectQuit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectQuit.cpp b/lldb/source/Commands/CommandObjectQuit.cpp index 2f258b71d14..be55dab6168 100644 --- a/lldb/source/Commands/CommandObjectQuit.cpp +++ b/lldb/source/Commands/CommandObjectQuit.cpp @@ -73,7 +73,7 @@ bool CommandObjectQuit::DoExecute(Args &command, CommandReturnObject &result) { message.Printf("Quitting LLDB will %s one or more processes. Do you really " "want to proceed", (is_a_detach ? "detach from" : "kill")); - if (!m_interpreter.Confirm(message.GetData(), true)) { + if (!m_interpreter.Confirm(message.GetString(), true)) { result.SetStatus(eReturnStatusFailed); return false; } |