summaryrefslogtreecommitdiff
path: root/source/lib/crc32.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1998-10-14 07:08:43 +0000
committerLuke Leighton <lkcl@samba.org>1998-10-14 07:08:43 +0000
commit8b9c0bad889d4f26987d87c54b4d8bf102af1744 (patch)
tree6926eca87cbfc13d95075103500b133a3bd3508a /source/lib/crc32.c
parentcbc6ab6bb94dad7d71cfb71df3ee283831638e11 (diff)
downloadsamba-8b9c0bad889d4f26987d87c54b4d8bf102af1744.tar.gz
more warnings...
Diffstat (limited to 'source/lib/crc32.c')
-rw-r--r--source/lib/crc32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/crc32.c b/source/lib/crc32.c
index b92bc70d124..ad7131a8009 100644
--- a/source/lib/crc32.c
+++ b/source/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++)
{