Skip to content

Commit d16c751

Browse files
committed
ruff
1 parent f198db6 commit d16c751

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/link.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2493,7 +2493,8 @@ def phase_binaryen(target, options, wasm_target):
24932493
if settings.ASSERTIONS:
24942494
def checksum(a):
24952495
h = 2166136261
2496-
for b in a: h = (h ^ b) * 65599 & 0xffffffff
2496+
for b in a:
2497+
h = (h ^ b) * 65599 & 0xffffffff
24972498
return h
24982499
js = do_replace(js, '"<<< WASM_BINARY_DATA_CHECKSUM >>>"', str(checksum(utils.read_binary(wasm_target))))
24992500
else:

0 commit comments

Comments
 (0)