aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2012-02-11 00:31:24 -0800
committerMark Adler <madler@alumni.caltech.edu>2012-02-11 00:31:24 -0800
commit75143f819f14428f114ef69980af69071d65cbf9 (patch)
treeee3a50d490c91163157b7c1d8ad7dada33d47ce7
parent7d45cf5a1dbe9d34f9fb18e2f485efda83019493 (diff)
downloadzlib-75143f819f14428f114ef69980af69071d65cbf9.tar.gz
zlib-75143f819f14428f114ef69980af69071d65cbf9.tar.bz2
zlib-75143f819f14428f114ef69980af69071d65cbf9.zip
Fix minor typo in zlib.h comments [RzeĊ›niowiecki].
-rw-r--r--zlib.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/zlib.h b/zlib.h
index 3d3ab71..db47bf8 100644
--- a/zlib.h
+++ b/zlib.h
@@ -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