diff options
Diffstat (limited to 'lldb/source/Core/Debugger.cpp')
-rw-r--r-- | lldb/source/Core/Debugger.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp index 3e3b0cb1aea..9cefaa30f14 100644 --- a/lldb/source/Core/Debugger.cpp +++ b/lldb/source/Core/Debugger.cpp @@ -1336,10 +1336,10 @@ Debugger::FormatPrompt } else if (is_pointer) // if pointer, value is the address stored { - var_success = target->DumpPrintableRepresentation(s, - val_obj_display, - custom_format, - ValueObject::ePrintableRepresentationSpecialCasesDisable); + target->DumpPrintableRepresentation (s, + val_obj_display, + custom_format, + ValueObject::ePrintableRepresentationSpecialCasesDisable); } else { |