Fixed minor warning

This commit is contained in:
Celine Mercier
2016-03-25 16:11:52 +01:00
parent ff6c27acf2
commit edc4fd7b3e
2 changed files with 2 additions and 2 deletions

View File

@ -171,7 +171,7 @@ static const uint64_t crc64_tab[256] = {
}; };
uint64_t crc64(const unsigned char* s, uint64_t l) uint64_t crc64(const char* s, uint64_t l)
{ {
uint64_t j; uint64_t j;
uint64_t crc = 0; uint64_t crc = 0;

View File

@ -6,4 +6,4 @@
#include <stdint.h> #include <stdint.h>
uint64_t crc64(const unsigned char* s, uint64_t l); uint64_t crc64(const char* s, uint64_t l);