diff options
Diffstat (limited to 'lldb/source/API/SBEvent.cpp')
-rw-r--r-- | lldb/source/API/SBEvent.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/API/SBEvent.cpp b/lldb/source/API/SBEvent.cpp index 0799b8bad57..d77f0020835 100644 --- a/lldb/source/API/SBEvent.cpp +++ b/lldb/source/API/SBEvent.cpp @@ -155,11 +155,11 @@ bool SBEvent::GetDescription (SBStream &description) { if (m_opaque) - { + { m_opaque->Dump (description.get()); - } + } else - description.Printf ("No value"); + description.Printf ("No value"); return true; } |