diff options
author | Mark Adler <fork@madler.net> | 2022-08-22 13:13:06 -0700 |
---|---|---|
committer | Mark Adler <fork@madler.net> | 2022-08-23 15:35:13 -0700 |
commit | 5752b171fd4cc96b8d1f9526ec1940199c6e9740 (patch) | |
tree | 7d8d7e6bf5760cca696b77e72010a497a097061a /crc32.c | |
parent | 1eb7682f845ac9e9bf9ae35bbfb3bad5dacbd91d (diff) | |
download | zlib-5752b171fd4cc96b8d1f9526ec1940199c6e9740.tar.gz zlib-5752b171fd4cc96b8d1f9526ec1940199c6e9740.tar.bz2 zlib-5752b171fd4cc96b8d1f9526ec1940199c6e9740.zip |
Fix some typos.
No code changes.
Diffstat (limited to 'crc32.c')
-rw-r--r-- | crc32.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |