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
diff --git a/lldb/source/Core/Section.cpp b/lldb/source/Core/Section.cpp
index 6d984f4..54bbe17 100644
--- a/lldb/source/Core/Section.cpp
+++ b/lldb/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);