Skip to content

Commit c26969a

Browse files
committed
Merge branch 'master' of https://github.com/micaelalex/Python
2 parents 7666acc + fbac99b commit c26969a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hashes/elf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def elf_hash(data):
1212
hash = (hash << 4) + ord(data[i])
1313
x = hash & 0xF0000000
1414
if x != 0:
15-
hash ^= (x >> 24)
15+
hash ^= x >> 24
1616
hash &= ~x
1717
return hash
1818

0 commit comments

Comments
 (0)