diff options
author | Luke Leighton <lkcl@samba.org> | 1998-10-09 20:31:52 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-10-09 20:31:52 +0000 |
commit | abb67ee6deac030c4bc38e166cd3e3ab086ae285 (patch) | |
tree | b05754d4b52c90b89ae8e68278153ea233c67077 /source3/lib | |
parent | 8158620124504a1ece1f1191cb8f273709039bd2 (diff) | |
download | samba-abb67ee6deac030c4bc38e166cd3e3ab086ae285.tar.gz samba-abb67ee6deac030c4bc38e166cd3e3ab086ae285.tar.bz2 samba-abb67ee6deac030c4bc38e166cd3e3ab086ae285.zip |
signed / unsigned issues spotted by herb
(This used to be commit 0b90442021aa3adb5ae7f09c53c9e54c7655d8c5)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/crc32.c | 4 |
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; |