diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:09:18 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:09:18 -0700 |
commit | 23c69f10698301ae97709eb0bbfb371d66b99a08 (patch) | |
tree | 1956b671b3df8d12c315a38f33b190677ccd659e /crc32.c | |
parent | 6b834a58bdef976383cff6e2a83f353e668a9cf1 (diff) | |
download | zlib-23c69f10698301ae97709eb0bbfb371d66b99a08.tar.gz zlib-23c69f10698301ae97709eb0bbfb371d66b99a08.tar.bz2 zlib-23c69f10698301ae97709eb0bbfb371d66b99a08.zip |
zlib 0.94v0.94
Diffstat (limited to 'crc32.c')
-rw-r--r-- | crc32.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ | |||
3 | * For conditions of distribution and use, see copyright notice in zlib.h | 3 | * For conditions of distribution and use, see copyright notice in zlib.h |
4 | */ | 4 | */ |
5 | 5 | ||
6 | /* $Id: crc32.c,v 1.5 1995/05/01 13:55:46 jloup Exp $ */ | 6 | /* $Id: crc32.c,v 1.4 1995/04/14 14:55:12 jloup Exp $ */ |
7 | 7 | ||
8 | #include "zlib.h" | 8 | #include "zlib.h" |
9 | 9 | ||
@@ -99,7 +99,7 @@ local uLong crc_table[] = { | |||
99 | /* ========================================================================= */ | 99 | /* ========================================================================= */ |
100 | uLong crc32(crc, buf, len) | 100 | uLong crc32(crc, buf, len) |
101 | uLong crc; | 101 | uLong crc; |
102 | Byte *buf; | 102 | Bytef *buf; |
103 | uInt len; | 103 | uInt len; |
104 | { | 104 | { |
105 | if (buf == Z_NULL) return 0L; | 105 | if (buf == Z_NULL) return 0L; |