removed unnecessary uint64 cast

This commit is contained in:
Vitaly Puzrin 2014-03-12 03:34:22 +04:00
parent b03bbe55a7
commit 8a6a0f004c
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ function adler32(adler, buf, len, pos) {
s2 %= 65521; s2 %= 65521;
} }
return (s1 | (s2 << 16)) >>> 0; return (s1 | (s2 << 16));
} }

View file

@ -506,7 +506,7 @@ function inflate(strm, flush) {
return (((q >>> 24) & 0xff) + return (((q >>> 24) & 0xff) +
((q >>> 8) & 0xff00) + ((q >>> 8) & 0xff00) +
((q & 0xff00) << 8) + ((q & 0xff00) << 8) +
((q & 0xff) << 24)) >>> 0; ((q & 0xff) << 24));
} }
/* /*