Skip to content

Commit

Permalink
Merge pull request #1 from cclauss/patch-1
Browse files Browse the repository at this point in the history
Trailing L on 0xFFFFFFFFFFFFFFFFL is no longer required
  • Loading branch information
0xeb committed Apr 1, 2019
2 parents 15fe404 + 20e6d14 commit e917540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ida/idaapi.py
Expand Up @@ -55,7 +55,7 @@ def _deduce_state_variables():

# Assume program bitness based on the first memory block pointer size
BADADDR = ea_t.init(
0xFFFFFFFFFFFFFFFFL if _currentProgram.getMinAddress().getPointerSize() == 8 else 0xFFFFFFFF,
0xFFFFFFFFFFFFFFFF if _currentProgram.getMinAddress().getPointerSize() == 8 else 0xFFFFFFFF,
Address.NO_ADDRESS)


Expand Down

0 comments on commit e917540

Please sign in to comment.