(deps/zlib) Rollback changes

This commit is contained in:
twinaphex 2016-02-07 01:05:40 +01:00
parent 3c2f7fadcc
commit ac09b7eb29
2 changed files with 2 additions and 2 deletions

2
deps/zlib/gzread.c vendored
View File

@ -249,7 +249,7 @@ local int gz_fetch(gz_statep state)
/* Skip len uncompressed bytes of output. Return -1 on error, 0 on success. */
local int gz_skip(gz_statep state, z_off64_t len)
{
unsigned n = 0;
unsigned n;
/* skip over len bytes or reach end-of-file, whichever comes first */
while (len)

2
deps/zlib/gzwrite.c vendored
View File

@ -132,7 +132,7 @@ local int gz_comp(gz_statep state, int flush)
local int gz_zero(gz_statep state, z_off64_t len)
{
int first;
unsigned n = 0;
unsigned n;
z_streamp strm = &(state->strm);
/* consume whatever's left in the input buffer */