Fix warnings detected on Android build

This commit is contained in:
Sylvain Becker 2018-12-06 15:46:40 +01:00
parent a34c583513
commit ec677b353f
3 changed files with 7 additions and 12 deletions

View file

@ -83,7 +83,7 @@ static Uint32 crc32_for_byte(Uint32 r)
return r ^ (Uint32)0xFF000000L;
}
static Uint32 crc32(const void *data, int count)
static Uint32 crc32(const void *data, size_t count)
{
Uint32 crc = 0;
int i;