no message

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@691 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
eccles 2002-08-16 21:00:03 +00:00
parent 4c55df6c46
commit 2d52d815dc

View file

@ -2,7 +2,7 @@
#ifdef NSIS_COMPRESS_USE_ZLIB
/* inflate.c -- zlib interface to inflate modules
* Copyright (C) 1995-1998 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
* For conditions of distribution and use, see copyright notice in zlib.h
* this has been HEAVILY modified for NSIS use, and is no longer compatible
* with the stock zlib.
@ -44,10 +44,10 @@ int inflateReset(z_streamp z)
int inflateInit(z_streamp z)
{
int inflate_blocks_getssize();
int inflate_blocks_getssize(void);
void inflate_blocks_init(z_streamp z,inflate_blocks_statef *s);
if ((z->state =
if ((z->state =
(struct internal_state FAR *) ZALLOC(z,1,sizeof(struct internal_state)+inflate_blocks_getssize())) == Z_NULL)
return Z_MEM_ERROR;