From 2d52d815dc4084f4f967bb2a42219fed5d3c840f Mon Sep 17 00:00:00 2001 From: eccles Date: Fri, 16 Aug 2002 21:00:03 +0000 Subject: [PATCH] no message git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@691 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/zlib/INFLATE.C | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/zlib/INFLATE.C b/Source/zlib/INFLATE.C index c91aee40..8705fe5e 100644 --- a/Source/zlib/INFLATE.C +++ b/Source/zlib/INFLATE.C @@ -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;