diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2017-10-08 23:41:14 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2017-10-09 02:57:48 +0200 |
commit | 14b15539398f5b7f72686e60c664fed1518bc20d (patch) | |
tree | 4ba614ec5654fa3697d09f7a98f272ea81a412c1 | |
parent | c585b4e9f0b30b2ce60a48246f6fe656b4fb3957 (diff) | |
download | ffmpeg-14b15539398f5b7f72686e60c664fed1518bc20d.tar.gz |
lavf/adp: Fix the probe function on systems with signed char.
-rw-r--r-- | libavformat/adp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/adp.c b/libavformat/adp.c index 735550307e..3914857ad5 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; |