aboutsummaryrefslogtreecommitdiff
path: root/crc32.c
diff options
context:
space:
mode:
Diffstat (limited to 'crc32.c')
-rw-r--r--crc32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crc32.c b/crc32.c
index 561d0fe..c71a689 100644
--- a/crc32.c
+++ b/crc32.c
@@ -645,8 +645,8 @@ unsigned long ZEXPORT crc32_z(crc, buf, len)
645 len &= 7; 645 len &= 7;
646 646
647 /* Do three interleaved CRCs to realize the throughput of one crc32x 647 /* Do three interleaved CRCs to realize the throughput of one crc32x
648 instruction per cycle. Each CRC is calcuated on Z_BATCH words. The three 648 instruction per cycle. Each CRC is calculated on Z_BATCH words. The
649 CRCs are combined into a single CRC after each set of batches. */ 649 three CRCs are combined into a single CRC after each set of batches. */
650 while (num >= 3 * Z_BATCH) { 650 while (num >= 3 * Z_BATCH) {
651 crc1 = 0; 651 crc1 = 0;
652 crc2 = 0; 652 crc2 = 0;