lavf/adp: Fix the probe function on systems with signed char.

This commit is contained in:
Carl Eugen Hoyos 2017-10-08 23:41:14 +02:00
parent c585b4e9f0
commit 14b1553939
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
static int adp_probe(AVProbeData *p)
{
int i, changes = 0;
char last = 0;
uint8_t last = 0;
if (p->buf_size < 32)
return 0;