diff options
Diffstat (limited to 'lldb/source/Core/Debugger.cpp')
-rw-r--r-- | lldb/source/Core/Debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp index 1577a38f336..24715ec2129 100644 --- a/lldb/source/Core/Debugger.cpp +++ b/lldb/source/Core/Debugger.cpp @@ -320,7 +320,7 @@ Error Debugger::SetPropertyValue(const ExecutionContext *exe_ctx, stream_sp->Printf("%s\n", error.AsCString()); } if (feedback_stream.GetSize()) - stream_sp->Printf("%s", feedback_stream.GetData()); + stream_sp->PutCString(feedback_stream.GetString()); } } } |