Skip to content

Commit 78723b8

Browse files
committed
clang format.
1 parent dd738a5 commit 78723b8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1705,7 +1705,8 @@ void ObjectFileMachO::ProcessSegmentCommand(
17051705
// a 4GB boundary. llvm::MachO::section_64 have only 32 bit file offsets
17061706
// for the file offset of the section contents, so we need to track and
17071707
// sections that overflow and adjust the offsets accordingly.
1708-
const uint64_t section_file_offset = (uint64_t)sect64.offset + section_offset_adjust;
1708+
const uint64_t section_file_offset =
1709+
(uint64_t)sect64.offset + section_offset_adjust;
17091710
const uint64_t end_section_offset = (uint64_t)sect64.offset + sect64.size;
17101711
if (end_section_offset >= UINT32_MAX)
17111712
section_offset_adjust += end_section_offset & 0xFFFFFFFF00000000ull;

0 commit comments

Comments
 (0)