From d93cc3c99731c38934f027d4196230bf639c4e31 Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Mon, 19 Oct 2009 18:54:09 +0000 Subject: [PATCH] Shut up warnings --- code/qcommon/unzip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/qcommon/unzip.c b/code/qcommon/unzip.c index 1d67fda4..a50e186e 100644 --- a/code/qcommon/unzip.c +++ b/code/qcommon/unzip.c @@ -204,7 +204,7 @@ local int unzlocal_getShort (pzlib_filefunc_def,filestream,pX) uLong *pX; { uLong x ; - int i; + int i = 0; int err; err = unzlocal_getByte(pzlib_filefunc_def,filestream,&i); @@ -232,7 +232,7 @@ local int unzlocal_getLong (pzlib_filefunc_def,filestream,pX) uLong *pX; { uLong x ; - int i; + int i = 0; int err; err = unzlocal_getByte(pzlib_filefunc_def,filestream,&i);