Avoid a size_t-to-ALuint conversion warning

This commit is contained in:
Chris Robinson
2014-03-21 17:29:20 -07:00
parent 8c33b4d742
commit f5ce73646c
+1 -1
View File
@@ -42,7 +42,7 @@ static ALubyte read_8(Reader *stream)
}
return buf[0];
}
static void skip(Reader *stream, ALuint amt)
static void skip(Reader *stream, size_t amt)
{
while(amt > 0 && !READERR(stream))
{