From 4c159cfb167a081dfd5cd9647d42fb06d3311b3f Mon Sep 17 00:00:00 2001 From: Vitaly Puzrin Date: Thu, 20 Feb 2014 22:31:37 +0400 Subject: [PATCH] removed unnecessary uint cast --- lib/zlib/crc32.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/zlib/crc32.js b/lib/zlib/crc32.js index 8a82d85..d6a36cf 100644 --- a/lib/zlib/crc32.js +++ b/lib/zlib/crc32.js @@ -9,7 +9,7 @@ function makeTable() { for(var k =0; k < 8; k++){ c = ((c&1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1)); } - table[n] = c >>> 0; + table[n] = c; } return table;