From 8a2acbffc86012de3523ecf91db2c4ea1b1c4ea2 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Fri, 9 Sep 2011 23:13:27 -0700 Subject: zlib 1.0-pre --- compress.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'compress.c') diff --git a/compress.c b/compress.c index be9ef64..5addd8d 100644 --- a/compress.c +++ b/compress.c @@ -1,5 +1,5 @@ /* compress.c -- compress a memory buffer - * Copyright (C) 1995-1996 Jean-loup Gailly. + * Copyright (C) 1995 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h */ @@ -22,13 +22,13 @@ int compress (dest, destLen, source, sourceLen) Bytef *dest; uLongf *destLen; - const Bytef *source; + Bytef *source; uLong sourceLen; { z_stream stream; int err; - stream.next_in = (Bytef*)source; + stream.next_in = source; stream.avail_in = (uInt)sourceLen; /* Check for source > 64K on 16-bit machine: */ if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; -- cgit v1.2.1