From 191e8ca75279073699e0c0f25128b2b2088d1cbb Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Wed, 27 Sep 2006 19:47:39 +0000 Subject: fix some signedness warnings Originally committed as revision 6355 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/svq1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/svq1.c') diff --git a/libavcodec/svq1.c b/libavcodec/svq1.c index 98a7a3cd89..caa6fcb4ef 100644 --- a/libavcodec/svq1.c +++ b/libavcodec/svq1.c @@ -655,9 +655,9 @@ static int svq1_decode_frame_header (GetBitContext *bitbuf,MpegEncContext *s) { } if ((s->f_code ^ 0x10) >= 0x50) { - char msg[256]; + uint8_t msg[256]; - svq1_parse_string (bitbuf, (char *) msg); + svq1_parse_string (bitbuf, msg); av_log(s->avctx, AV_LOG_INFO, "embedded message: \"%s\"\n", (char *) msg); } -- cgit v1.2.3