diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2012-02-11 00:31:24 -0800 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2012-02-11 00:31:24 -0800 |
commit | 75143f819f14428f114ef69980af69071d65cbf9 (patch) | |
tree | ee3a50d490c91163157b7c1d8ad7dada33d47ce7 | |
parent | 7d45cf5a1dbe9d34f9fb18e2f485efda83019493 (diff) | |
download | zlib-75143f819f14428f114ef69980af69071d65cbf9.tar.gz zlib-75143f819f14428f114ef69980af69071d65cbf9.tar.bz2 zlib-75143f819f14428f114ef69980af69071d65cbf9.zip |
Fix minor typo in zlib.h comments [RzeĊniowiecki].
-rw-r--r-- | zlib.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1578,9 +1578,8 @@ ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len)); | |||
1578 | /* | 1578 | /* |
1579 | Update a running CRC-32 with the bytes buf[0..len-1] and return the | 1579 | Update a running CRC-32 with the bytes buf[0..len-1] and return the |
1580 | updated CRC-32. If buf is Z_NULL, this function returns the required | 1580 | updated CRC-32. If buf is Z_NULL, this function returns the required |
1581 | initial value for the for the crc. Pre- and post-conditioning (one's | 1581 | initial value for the crc. Pre- and post-conditioning (one's complement) is |
1582 | complement) is performed within this function so it shouldn't be done by the | 1582 | performed within this function so it shouldn't be done by the application. |
1583 | application. | ||
1584 | 1583 | ||
1585 | Usage example: | 1584 | Usage example: |
1586 | 1585 | ||