From fc6d50e120eba64a14d9a8c334bfa5e792d43859 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Thu, 11 Oct 2012 20:42:53 +0000 Subject: [PATCH] Fixed an indentation issue that only shows up when dumping .o files that use linked addresses (DWARF in .o files with debug map). llvm-svn: 165740 --- lldb/source/Core/Section.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Core/Section.cpp b/lldb/source/Core/Section.cpp index 6d984f4478e9..54bbe17407e9 100644 --- a/lldb/source/Core/Section.cpp +++ b/lldb/source/Core/Section.cpp @@ -304,7 +304,7 @@ Section::Dump (Stream *s, Target *target, uint32_t depth) const addr = linked_section_sp->GetFileAddress() + m_linked_offset; } - int indent = 26 + s->GetIndentLevel(); + int indent = 28 + s->GetIndentLevel(); s->Printf("%*.*s", indent, indent, ""); VMRange linked_range(addr, addr + m_byte_size); linked_range.Dump (s, 0);