aboutsummaryrefslogtreecommitdiff
path: root/src/libflate/crc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libflate/crc.c')
-rw-r--r--src/libflate/crc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libflate/crc.c b/src/libflate/crc.c
index 4da78f6c..8085c23e 100644
--- a/src/libflate/crc.c
+++ b/src/libflate/crc.c
@@ -2,11 +2,11 @@
#include <libc.h>
#include <flate.h>
-ulong*
-mkcrctab(ulong poly)
+uint32*
+mkcrctab(uint32 poly)
{
- ulong *crctab;
- ulong crc;
+ uint32 *crctab;
+ uint32 crc;
int i, j;
crctab = malloc(256 * sizeof(ulong));
@@ -26,8 +26,8 @@ mkcrctab(ulong poly)
return crctab;
}
-ulong
-blockcrc(ulong *crctab, ulong crc, void *vbuf, int n)
+uint32
+blockcrc(uint32 *crctab, uint32 crc, void *vbuf, int n)
{
uchar *buf, *ebuf;