summaryrefslogtreecommitdiff
path: root/libavformat/adp.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2017-10-08 23:41:14 +0200
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2017-10-09 02:57:48 +0200
commit14b15539398f5b7f72686e60c664fed1518bc20d (patch)
tree4ba614ec5654fa3697d09f7a98f272ea81a412c1 /libavformat/adp.c
parentc585b4e9f0b30b2ce60a48246f6fe656b4fb3957 (diff)
downloadffmpeg-14b15539398f5b7f72686e60c664fed1518bc20d.tar.gz
lavf/adp: Fix the probe function on systems with signed char.
Diffstat (limited to 'libavformat/adp.c')
-rw-r--r--libavformat/adp.c2
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;