From fc2c326aa693239005d023a4f6f08e7bb4f718d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20=27Flameeyes=27=20Petten=C3=B2?= Date: Tue, 20 Jun 2006 01:49:20 +0000 Subject: Make buffer a char string, reduces amount of warnings tremendously. CVS patchset: 8066 CVS date: 2006/06/20 01:49:20 --- src/demuxers/demux_asf.c | 4 ++-- 1 file 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) { -- cgit v1.2.3