Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2017-10-09 00:41:14 +0300
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2017-10-09 03:57:48 +0300
commit14b15539398f5b7f72686e60c664fed1518bc20d (patch)
tree4ba614ec5654fa3697d09f7a98f272ea81a412c1
parentc585b4e9f0b30b2ce60a48246f6fe656b4fb3957 (diff)
lavf/adp: Fix the probe function on systems with signed char.
-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;