Skip to content

Commit 48452cf

Browse files
committed
Fix indentation
1 parent b6d0317 commit 48452cf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/patchelf.cc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -135,12 +135,12 @@ class ElfFile
135135
ElfFile * elfFile;
136136
bool operator ()(const Elf_Phdr & x, const Elf_Phdr & y)
137137
{
138-
// A PHDR comes before everything else.
139-
if (y.p_type == PT_PHDR) return false;
140-
if (x.p_type == PT_PHDR) return true;
138+
// A PHDR comes before everything else.
139+
if (y.p_type == PT_PHDR) return false;
140+
if (x.p_type == PT_PHDR) return true;
141141

142-
// Sort non-PHDRs by address.
143-
return elfFile->rdi(x.p_paddr) < elfFile->rdi(y.p_paddr);
142+
// Sort non-PHDRs by address.
143+
return elfFile->rdi(x.p_paddr) < elfFile->rdi(y.p_paddr);
144144
}
145145
};
146146

0 commit comments

Comments
 (0)