Fixed an indentation issue that only shows up when dumping .o files that use linked...
authorGreg Clayton <gclayton@apple.com>
Thu, 11 Oct 2012 20:42:53 +0000 (20:42 +0000)
committerGreg Clayton <gclayton@apple.com>
Thu, 11 Oct 2012 20:42:53 +0000 (20:42 +0000)
llvm-svn: 165740

lldb/source/Core/Section.cpp

index 6d984f4..54bbe17 100644 (file)
@@ -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);