Skip to content

Commit

Permalink
Fixed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredbischof committed Dec 17, 2014
1 parent 8999406 commit a8f9772
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def print_md5_stats(ohdl, data, imap):
match = np.where(imap['md5']==md5)
if len(match[0]) > 0:
row = match[0][0]
# seek and length must be less than 2147483647
# seek and length must be less than or equal to 2147483647
if imap[row][1] <= 2147483647 and imap[row][2] <= 2147483647:
seek, length = str(imap[row][1]), str(imap[row][2])
else:
Expand Down

0 comments on commit a8f9772

Please sign in to comment.