Skip to content

Commit 14b1553

Browse files
committed
lavf/adp: Fix the probe function on systems with signed char.
1 parent c585b4e commit 14b1553

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libavformat/adp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
static int adp_probe(AVProbeData *p)
2828
{
2929
int i, changes = 0;
30-
char last = 0;
30+
uint8_t last = 0;
3131

3232
if (p->buf_size < 32)
3333
return 0;

0 commit comments

Comments
 (0)