Commit d8a227f2 authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/adler32: Fix data type in test code

Fixes "warning: argument #2 is incompatible with prototype:"
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 76cc8582
......@@ -108,7 +108,7 @@ static volatile int checksum;
int main(int argc, char **argv)
{
int i;
char data[LEN];
uint8_t data[LEN];
av_log_set_level(AV_LOG_DEBUG);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment