removed unnecessary uint64 cast

master
Vitaly Puzrin 2014-03-12 03:34:22 +04:00
rodzic b03bbe55a7
commit 8a6a0f004c
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

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

Wyświetl plik

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