Skip to content

Commit

Permalink
Fix elf loader for PPC64
Browse files Browse the repository at this point in the history
  • Loading branch information
xairy committed May 9, 2019
1 parent 22e442c commit 0346891
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 0346891

Please sign in to comment.