summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/zlib/gzio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/zlib/gzio.c')
-rw-r--r--src/3rdparty/zlib/gzio.c4
1 files changed, 2 insertions, 2 deletions
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;
}