diff options
author | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2023-02-02 15:50:00 +0100 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2023-08-03 13:53:24 -0700 |
commit | c7ddcc2e0e8bb397ad720564228b538135ec11d8 (patch) | |
tree | e573e8efe22a097b7d18319971b4ca9b20f38ba8 /crc32.c | |
parent | 2bcc74873527f2ad9d3079ba6eff15c0eadc8910 (diff) | |
download | zlib-c7ddcc2e0e8bb397ad720564228b538135ec11d8.tar.gz zlib-c7ddcc2e0e8bb397ad720564228b538135ec11d8.tar.bz2 zlib-c7ddcc2e0e8bb397ad720564228b538135ec11d8.zip |
Fix some spelling errors.
Diffstat (limited to 'crc32.c')
-rw-r--r-- | crc32.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) { |