summaryrefslogtreecommitdiffstats
path: root/cpukit/zlib/crc32.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-03-18 10:11:47 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-03-18 10:11:47 +0000
commitc29ecea5a9d5a0fb80ed367a30c70d6112e7ea35 (patch)
tree78da3e842e1dcf18e48bc82e5377767503cd2110 /cpukit/zlib/crc32.c
parentImport from zlib-1.2.5 (diff)
downloadrtems-c29ecea5a9d5a0fb80ed367a30c70d6112e7ea35.tar.bz2
Import from zlib-1.2.5
Diffstat (limited to 'cpukit/zlib/crc32.c')
-rw-r--r--cpukit/zlib/crc32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/zlib/crc32.c b/cpukit/zlib/crc32.c
index 1acc7ed8e4..91be372d22 100644
--- a/cpukit/zlib/crc32.c
+++ b/cpukit/zlib/crc32.c
@@ -1,5 +1,5 @@
/* crc32.c -- compute the CRC-32 of a data stream
- * Copyright (C) 1995-2006 Mark Adler
+ * Copyright (C) 1995-2006, 2010 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*
* Thanks to Rodney Brown <rbrown64@csc.com.au> for his contribution of faster
@@ -221,7 +221,7 @@ const unsigned long FAR * ZEXPORT get_crc_table()
unsigned long ZEXPORT crc32(crc, buf, len)
unsigned long crc;
const unsigned char FAR *buf;
- unsigned len;
+ uInt len;
{
if (buf == Z_NULL) return 0UL;