Fixed compiler warning

This commit is contained in:
pagefault
2001-04-30 20:50:06 +00:00
parent ebee9215ee
commit fea6082175

View File

@@ -135,7 +135,7 @@ DWORD ZOpenFile()
if (TextFile)
FILEHANDLE[CurrentHandle]=fopen(ZOpenFileName,"r+b");
else
FILEHANDLE[CurrentHandle]=gzopen(ZOpenFileName,"r+b");
FILEHANDLE[CurrentHandle]=(FILE *)gzopen(ZOpenFileName,"r+b");
if(FILEHANDLE[CurrentHandle]!=NULL)
{
CurrentHandle+=1;