avutil/adler32: Fix data type in test code

Fixes "warning: argument #2 is incompatible with prototype:"

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-06-19 02:09:50 +02:00
parent 76cc8582fd
commit d8a227f231
1 changed files with 1 additions and 1 deletions

View File

@ -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);