diff amr.c @ 1332:7474cc6383d4 libavformat

fix some signedness warnings
author mru
date Wed, 27 Sep 2006 19:47:39 +0000
parents 996ce2a68147
children 0899bfe4105c
line wrap: on
line diff
--- a/amr.c	Wed Sep 27 19:39:41 2006 +0000
+++ b/amr.c	Wed Sep 27 19:47:39 2006 +0000
@@ -25,8 +25,8 @@
 */
 #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)