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 --- libavformat/amr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/amr.c') diff --git a/libavformat/amr.c b/libavformat/amr.c index bac9fbe44f..114a73929f 100644 --- a/libavformat/amr.c +++ b/libavformat/amr.c @@ -25,8 +25,8 @@ Only mono files are supported. */ #include "avformat.h" -static const unsigned char AMR_header [] = "#!AMR\n"; -static const unsigned char AMRWB_header [] = "#!AMR-WB\n"; +static const char AMR_header [] = "#!AMR\n"; +static const char AMRWB_header [] = "#!AMR-WB\n"; #ifdef CONFIG_MUXERS static int amr_write_header(AVFormatContext *s) -- cgit v1.2.3