mirror of https://git.ffmpeg.org/ffmpeg.git
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:
parent
76cc8582fd
commit
d8a227f231
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue