mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
(deps/zlib) Rollback changes
This commit is contained in:
parent
3c2f7fadcc
commit
ac09b7eb29
2
deps/zlib/gzread.c
vendored
2
deps/zlib/gzread.c
vendored
@ -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
2
deps/zlib/gzwrite.c
vendored
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user