Use ALuint for the amount to skip

This commit is contained in:
Chris Robinson
2014-05-04 01:00:21 -07:00
parent 2a7f3c015e
commit bca7c682f1
+1 -1
View File
@@ -42,7 +42,7 @@ static ALubyte read_8(Reader *stream)
}
return buf[0];
}
static void skip(Reader *stream, size_t amt)
static void skip(Reader *stream, ALuint amt)
{
while(amt > 0 && !READERR(stream))
{