Skip to content

Commit

Permalink
Merge pull request #100 from xairy/ppc64-fix
Browse files Browse the repository at this point in the history
Fix elf loader for PPC64
  • Loading branch information
sashs authored May 9, 2019
2 parents 22e442c + 0346891 commit 1d335d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ropper/loaders/elf.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,4 @@ def getArch(*params):
(elf.EM.ARM, elf.ELFCLASS.BITS_32, elf.ELFDATA.LSB) : ARM,
(elf.EM.ARM64, elf.ELFCLASS.BITS_64, elf.ELFDATA.LSB) : ARM64,
(elf.EM.PPC, elf.ELFCLASS.BITS_32, elf.ELFDATA.MSB) : PPC,
(elf.EM.PPC, elf.ELFCLASS.BITS_64, elf.ELFDATA.MSB) : PPC64}
(elf.EM.PPC64, elf.ELFCLASS.BITS_64, elf.ELFDATA.MSB) : PPC64}

0 comments on commit 1d335d5

Please sign in to comment.