From 19a71dbcb911513de0b835f63c3c78744b3b1703 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 1 Sep 2012 21:16:18 +0200 Subject: [PATCH] psxstr: more correct array type. Signed-off-by: Michael Niedermayer --- libavformat/psxstr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/psxstr.c b/libavformat/psxstr.c index 49b34413a6..86fba163ea 100644 --- a/libavformat/psxstr.c +++ b/libavformat/psxstr.c @@ -64,7 +64,7 @@ typedef struct StrDemuxContext { StrChannel channels[32]; } StrDemuxContext; -static const char sync_header[12] = {0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00}; +static const uint8_t sync_header[12] = {0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00}; static int str_probe(AVProbeData *p) {