summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-06-20 01:49:20 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-06-20 01:49:20 +0000
commitfc2c326aa693239005d023a4f6f08e7bb4f718d4 (patch)
tree0447f1e72d08db55cdd61722b113e94a7800b7b6
parent1db8aa445fdab9168bf649225feef804761132b1 (diff)
downloadxine-lib-fc2c326aa693239005d023a4f6f08e7bb4f718d4.tar.gz
xine-lib-fc2c326aa693239005d023a4f6f08e7bb4f718d4.tar.bz2
Make buffer a char string, reduces amount of warnings tremendously.
CVS patchset: 8066 CVS date: 2006/06/20 01:49:20
-rw-r--r--src/demuxers/demux_asf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_asf.c b/src/demuxers/demux_asf.c
index 7c0db358b..93374573b 100644
--- a/src/demuxers/demux_asf.c
+++ b/src/demuxers/demux_asf.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_asf.c,v 1.177 2006/06/18 19:36:47 dgp85 Exp $
+ * $Id: demux_asf.c,v 1.178 2006/06/20 01:49:20 dgp85 Exp $
*
* demultiplexer for asf streams
*
@@ -2165,7 +2165,7 @@ static demux_plugin_t *open_plugin (demux_class_t *class_gen,
input_plugin_t *input) {
demux_asf_t *this;
- uint8_t buf[MAX_PREVIEW_SIZE+1];
+ char buf[MAX_PREVIEW_SIZE+1];
int len;
switch (stream->content_detection_method) {