From 14b15539398f5b7f72686e60c664fed1518bc20d Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sun, 8 Oct 2017 23:41:14 +0200 Subject: [PATCH] lavf/adp: Fix the probe function on systems with signed char. --- libavformat/adp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/adp.c b/libavformat/adp.c index 7355503..3914857 100644 --- a/libavformat/adp.c +++ b/libavformat/adp.c @@ -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; -- 2.7.4