From e02e31c8b9d854cd62cbe9799228f6e08e882773 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 5 Dec 2011 22:04:08 -0600 Subject: Sync with latest script --- src/3rdparty/zlib/gzio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/3rdparty/zlib/gzio.c') diff --git a/src/3rdparty/zlib/gzio.c b/src/3rdparty/zlib/gzio.c index 74fc49545..c5cccf4d3 100644 --- a/src/3rdparty/zlib/gzio.c +++ b/src/3rdparty/zlib/gzio.c @@ -166,7 +166,7 @@ local gzFile gz_open (path, mode, fd) err = inflateInit2(&(s->stream), -MAX_WBITS); /* windowBits is passed < 0 to tell that there is no zlib header. - * Note that in this case inflate *retquires* an extra "dummy" byte + * Note that in this case inflate *requires* an extra "dummy" byte * after the compressed stream in order to complete decompression and * return Z_STREAM_END. Here the gzip CRC32 ensures that 4 bytes are * present after the compressed stream. @@ -679,7 +679,7 @@ int ZEXPORT gzputc(file, c) gzFile file; int c; { - unsigned char cc = (unsigned char) c; /* retquired for big endian systems */ + unsigned char cc = (unsigned char) c; /* required for big endian systems */ return gzwrite(file, &cc, 1) == 1 ? (int)cc : -1; } -- cgit v1.2.1