summaryrefslogtreecommitdiff
path: root/source/lib/crc32.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1998-10-09 20:31:52 +0000
committerLuke Leighton <lkcl@samba.org>1998-10-09 20:31:52 +0000
commit0b90442021aa3adb5ae7f09c53c9e54c7655d8c5 (patch)
tree34bb3f8470b6e5bd84e857aef7d8847c2df5405f /source/lib/crc32.c
parente0445419b2d50ae6efef36f4f295ebcfdbf1ad82 (diff)
downloadsamba-0b90442021aa3adb5ae7f09c53c9e54c7655d8c5.tar.gz
signed / unsigned issues spotted by herb
Diffstat (limited to 'source/lib/crc32.c')
-rw-r--r--source/lib/crc32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/lib/crc32.c b/source/lib/crc32.c
index cb8bcde9097..7d0b6e350d3 100644
--- a/source/lib/crc32.c
+++ b/source/lib/crc32.c
@@ -51,9 +51,9 @@ void crc32_build_table(void)
table lookup method.
*****************************************************************/
-uint32 crc32_calc_buffer( uint32 count, uchar *buffer)
+uint32 crc32_calc_buffer( uint32 count, char *buffer)
{
- uchar *p;
+ char *p;
uint32 crc;
p = buffer;