diff svq1.c @ 3776:1843a85123b7 libavcodec

fix some signedness warnings
author mru
date Wed, 27 Sep 2006 19:47:39 +0000
parents 0b546eab515d
children 20545fbb6f7c
line wrap: on
line diff
--- a/svq1.c	Wed Sep 27 19:46:19 2006 +0000
+++ b/svq1.c	Wed Sep 27 19:47:39 2006 +0000
@@ -655,9 +655,9 @@
     }
 
     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);
     }