mirror of
https://github.com/libretro/RetroArch
synced 2025-02-28 22:13:51 +00:00
(deps/rzlib/unzip.c) Get rid of shadowed declaration warning
This commit is contained in:
parent
79ff736e4c
commit
526b0a56d7
5
deps/rzlib/unzip.c
vendored
5
deps/rzlib/unzip.c
vendored
@ -209,13 +209,14 @@ local int unz64local_getByte OF((
|
||||
voidpf filestream,
|
||||
int *pi));
|
||||
|
||||
local int unz64local_getByte(const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, int *pi)
|
||||
local int unz64local_getByte(const zlib_filefunc64_32_def* pzlib_filefunc_def,
|
||||
voidpf filestream, int *_pi)
|
||||
{
|
||||
unsigned char c;
|
||||
int err = (int)ZREAD64(*pzlib_filefunc_def,filestream,&c,1);
|
||||
if (err==1)
|
||||
{
|
||||
*pi = (int)c;
|
||||
*_pi = (int)c;
|
||||
return UNZ_OK;
|
||||
}
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user