diff options
author | Luke Leighton <lkcl@samba.org> | 1998-10-14 07:08:43 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-10-14 07:08:43 +0000 |
commit | c09647c3e1faa54e36c383958d9ea6def911f77d (patch) | |
tree | 46c72f9c4b6721c8c6fdc92817867b652eeabf5e /source3/lib | |
parent | 1cdfdd4f0e1dc8610992786ce946db71f493c746 (diff) | |
download | samba-c09647c3e1faa54e36c383958d9ea6def911f77d.tar.gz samba-c09647c3e1faa54e36c383958d9ea6def911f77d.tar.bz2 samba-c09647c3e1faa54e36c383958d9ea6def911f77d.zip |
more warnings...
(This used to be commit 8b9c0bad889d4f26987d87c54b4d8bf102af1744)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/crc32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/crc32.c b/source3/lib/crc32.c index b92bc70d12..ad7131a800 100644 --- a/source3/lib/crc32.c +++ b/source3/lib/crc32.c @@ -60,7 +60,7 @@ static unsigned long CRCTable[256] = uint32 crc32_calc_buffer( uint32 count, char *buffer) { - unsigned long crc=0xffffffff; + uint32 crc=0xffffffff; int i; for(i=0;i<count;i++) { |