diff options
Diffstat (limited to 'lldb/source/Core/Debugger.cpp')
-rw-r--r-- | lldb/source/Core/Debugger.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp index c4619776c11..33f72a0896c 100644 --- a/lldb/source/Core/Debugger.cpp +++ b/lldb/source/Core/Debugger.cpp @@ -1456,7 +1456,7 @@ void Debugger::DefaultEventHandler() { done = true; } else if (event_type & CommandInterpreter::eBroadcastBitAsynchronousErrorData) { - const char *data = reinterpret_cast<const char *>( + const char *data = static_cast<const char *>( EventDataBytes::GetBytesFromEvent(event_sp.get())); if (data && data[0]) { StreamSP error_sp(GetAsyncErrorStream()); @@ -1467,7 +1467,7 @@ void Debugger::DefaultEventHandler() { } } else if (event_type & CommandInterpreter:: eBroadcastBitAsynchronousOutputData) { - const char *data = reinterpret_cast<const char *>( + const char *data = static_cast<const char *>( EventDataBytes::GetBytesFromEvent(event_sp.get())); if (data && data[0]) { StreamSP output_sp(GetAsyncOutputStream()); |