aboutsummaryrefslogtreecommitdiff
path: root/crc32.c
diff options
context:
space:
mode:
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>2023-02-02 15:50:00 +0100
committerMark Adler <madler@alumni.caltech.edu>2023-08-03 13:53:24 -0700
commitc7ddcc2e0e8bb397ad720564228b538135ec11d8 (patch)
treee573e8efe22a097b7d18319971b4ca9b20f38ba8 /crc32.c
parent2bcc74873527f2ad9d3079ba6eff15c0eadc8910 (diff)
downloadzlib-c7ddcc2e0e8bb397ad720564228b538135ec11d8.tar.gz
zlib-c7ddcc2e0e8bb397ad720564228b538135ec11d8.tar.bz2
zlib-c7ddcc2e0e8bb397ad720564228b538135ec11d8.zip
Fix some spelling errors.
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 a04fee3..6c38f5c 100644
--- a/crc32.c
+++ b/crc32.c
@@ -724,8 +724,8 @@ unsigned long ZEXPORT crc32_z(unsigned long crc, const unsigned char FAR *buf,
724 words = (z_word_t const *)buf; 724 words = (z_word_t const *)buf;
725 725
726 /* Do endian check at execution time instead of compile time, since ARM 726 /* Do endian check at execution time instead of compile time, since ARM
727 processors can change the endianess at execution time. If the 727 processors can change the endianness at execution time. If the
728 compiler knows what the endianess will be, it can optimize out the 728 compiler knows what the endianness will be, it can optimize out the
729 check and the unused branch. */ 729 check and the unused branch. */
730 endian = 1; 730 endian = 1;
731 if (*(unsigned char *)&endian) { 731 if (*(unsigned char *)&endian) {