Commit 14b15539 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

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

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