diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-24 00:09:31 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-24 00:09:31 -0700 |
commit | f32370e5420556c41ecf8c1e4620bed0e9f8f08a (patch) | |
tree | ea3c35b0858b49fd8b31f509655260512f613daf /gzread.c | |
parent | 1f5827155d8d75c1bebd0c830f220c5c4855bd25 (diff) | |
download | zlib-f32370e5420556c41ecf8c1e4620bed0e9f8f08a.tar.gz zlib-f32370e5420556c41ecf8c1e4620bed0e9f8f08a.tar.bz2 zlib-f32370e5420556c41ecf8c1e4620bed0e9f8f08a.zip |
Correct spelling error in gzread.c
Diffstat (limited to 'gzread.c')
-rw-r--r-- | gzread.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -297,7 +297,7 @@ local int gz_decomp(state) | |||
297 | /* Make data and put in the output buffer. Assumes that state->have == 0. | 297 | /* Make data and put in the output buffer. Assumes that state->have == 0. |
298 | Data is either copied from the input file or decompressed from the input | 298 | Data is either copied from the input file or decompressed from the input |
299 | file depending on state->how. If state->how is LOOK, then a gzip header is | 299 | file depending on state->how. If state->how is LOOK, then a gzip header is |
300 | looked for (and skipped if found) to determine wither to copy or decompress. | 300 | looked for (and skipped if found) to discern whether to copy or decompress. |
301 | Returns -1 on error, otherwise 0. gz_make() will leave state->have as COPY | 301 | Returns -1 on error, otherwise 0. gz_make() will leave state->have as COPY |
302 | or GZIP unless the end of the input file has been reached and all data has | 302 | or GZIP unless the end of the input file has been reached and all data has |
303 | been processed. */ | 303 | been processed. */ |