Revert spelling fixes. Please report them upstream.
authortb <tb@openbsd.org>
Tue, 27 Dec 2022 17:13:04 +0000 (17:13 +0000)
committertb <tb@openbsd.org>
Tue, 27 Dec 2022 17:13:04 +0000 (17:13 +0000)
lib/libz/README
lib/libz/crc32.c

index aa9a6d7..ba34d18 100644 (file)
@@ -64,7 +64,7 @@ Notes for some targets:
 - zlib doesn't work with gcc 2.6.3 on a DEC 3000/300LX under OSF/1 2.1 it works
   when compiled with cc.
 
-- On Digital Unix 4.0D (formerly OSF/1) on AlphaServer, the cc option -std1 is
+- On Digital Unix 4.0D (formely OSF/1) on AlphaServer, the cc option -std1 is
   necessary to get gzprintf working correctly. This is done by configure.
 
 - zlib doesn't work on HP-UX 9.05 with some versions of /bin/cc. It works with
index f67b661..0796b0f 100644 (file)
@@ -779,8 +779,8 @@ unsigned long ZEXPORT crc32_z(crc, buf, len)
         words = (z_word_t const *)buf;
 
         /* Do endian check at execution time instead of compile time, since ARM
-           processors can change the endianness at execution time. If the
-           compiler knows what the endianness will be, it can optimize out the
+           processors can change the endianess at execution time. If the
+           compiler knows what the endianess will be, it can optimize out the
            check and the unused branch. */
         endian = 1;
         if (*(unsigned char *)&endian) {