elf.py: fix identation error

This commit is contained in:
Yacine Elhamer
2023-06-02 16:30:17 +01:00
parent 0b834a1623
commit 4976375d74

View File

@@ -707,7 +707,7 @@ class SymTab:
sh_symtab = Shdr.from_viv(section, ElfBinary.readAtOffset(section.sh_offset, section.sh_size))
sh_strtab = Shdr.from_viv(strtab_section, ElfBinary.readAtOffset(strtab_section.sh_offset, strtab_section.sh_size))
return cls(endian, bitness, sh_symtab, sh_strtab)
return cls(endian, bitness, sh_symtab, sh_strtab)
def guess_os_from_osabi(elf: ELF) -> Optional[OS]: