summaryrefslogtreecommitdiff
path: root/libavformat/psxstr.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-09-01 21:16:18 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-09-01 23:45:32 +0200
commit19a71dbcb911513de0b835f63c3c78744b3b1703 (patch)
treebd44b784e5a1e705a418ccb6d65474cad82bb8b8 /libavformat/psxstr.c
parentc0daa73a0f8dcc695c27ed1029d8aa69f2968686 (diff)
downloadffmpeg-19a71dbcb911513de0b835f63c3c78744b3b1703.tar.gz
psxstr: more correct array type.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/psxstr.c')
-rw-r--r--libavformat/psxstr.c2
1 files changed, 1 insertions, 1 deletions
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)
{