Fixed an indentation issue that only shows up when dumping .o files that use linked addresses (DWARF in .o files with debug map).
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@165740 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Core/Section.cpp b/source/Core/Section.cpp
index 6d984f4..54bbe17 100644
--- a/source/Core/Section.cpp
+++ b/source/Core/Section.cpp
@@ -304,7 +304,7 @@
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);