projects
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
lavf/adp: Fix the probe function on systems with signed char.
[ffmpeg.git]
/
libavformat
/
adp.c
diff --git
a/libavformat/adp.c
b/libavformat/adp.c
index
7355503
..
3914857
100644
(file)
--- 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;