diff asf.c @ 1332:7474cc6383d4 libavformat

fix some signedness warnings
author mru
date Wed, 27 Sep 2006 19:47:39 +0000
parents 5b9729f5145c
children a95c384900ab
line wrap: on
line diff
--- a/asf.c	Wed Sep 27 19:39:41 2006 +0000
+++ b/asf.c	Wed Sep 27 19:47:39 2006 +0000
@@ -705,7 +705,7 @@
             /* return packet */
             if (asf_st->ds_span > 1) {
                 /* packet descrambling */
-                char* newdata = av_malloc(asf_st->pkt.size);
+                uint8_t *newdata = av_malloc(asf_st->pkt.size);
                 if (newdata) {
                     int offset = 0;
                     while (offset < asf_st->pkt.size) {