From 48452cf6b4ccba1c1f47a09f4284a253634ab7d1 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 8 Jan 2018 19:07:17 +0100 Subject: Fix indentation --- src/patchelf.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/patchelf.cc b/src/patchelf.cc index cd46f7e..878e870 100644 --- a/src/patchelf.cc +++ b/src/patchelf.cc @@ -135,12 +135,12 @@ private: ElfFile * elfFile; bool operator ()(const Elf_Phdr & x, const Elf_Phdr & y) { - // A PHDR comes before everything else. - if (y.p_type == PT_PHDR) return false; - if (x.p_type == PT_PHDR) return true; + // A PHDR comes before everything else. + if (y.p_type == PT_PHDR) return false; + if (x.p_type == PT_PHDR) return true; - // Sort non-PHDRs by address. - return elfFile->rdi(x.p_paddr) < elfFile->rdi(y.p_paddr); + // Sort non-PHDRs by address. + return elfFile->rdi(x.p_paddr) < elfFile->rdi(y.p_paddr); } }; -- cgit v1.2.1