summaryrefslogtreecommitdiff
path: root/source3/lib/crc32.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib/crc32.c')
-rw-r--r--source3/lib/crc32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/crc32.c b/source3/lib/crc32.c
index cb8bcde909..7d0b6e350d 100644
--- a/source3/lib/crc32.c
+++ b/source3/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;