diff options
Diffstat (limited to 'lldb/source/Target/ThreadPlanCallFunction.cpp')
| -rw-r--r-- | lldb/source/Target/ThreadPlanCallFunction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Target/ThreadPlanCallFunction.cpp b/lldb/source/Target/ThreadPlanCallFunction.cpp index f9efb272fe0..68fd50390e6 100644 --- a/lldb/source/Target/ThreadPlanCallFunction.cpp +++ b/lldb/source/Target/ThreadPlanCallFunction.cpp @@ -192,7 +192,7 @@ void ThreadPlanCallFunction::ReportRegisterState(const char *message) { strm.EOL(); } } - log->PutCString(strm.GetData()); + log->PutString(strm.GetString()); } } @@ -257,7 +257,7 @@ bool ThreadPlanCallFunction::ValidatePlan(Stream *error) { if (!m_valid) { if (error) { if (m_constructor_errors.GetSize() > 0) - error->PutCString(m_constructor_errors.GetData()); + error->PutCString(m_constructor_errors.GetString()); else error->PutCString("Unknown error"); } |

