Skip to content

Commit 238dc52

Browse files
Merge pull request #129 from N0fix/fix#106
2 parents 011cb33 + 93771c5 commit 238dc52

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

python/flare/idb2pat.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,7 @@ def make_func_sig(config, func):
218218

219219
sig += " %02X" % (alen)
220220
sig += " %04X" % (crc)
221-
# TODO: does this need to change for 64bit?
222-
sig += " %04X" % (func.end_ea - func.start_ea)
221+
sig += " %08X" % (func.end_ea - func.start_ea)
223222

224223
# this will be either " :%04d %s" or " :%08d %s"
225224
public_format = " :%%0%dX %%s" % (config.pointer_size)

0 commit comments

Comments
 (0)