From 02c44c558ea198edceacd1ec00fb7f3573064a0d Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Thu, 12 Feb 2004 18:02:17 +0000 Subject: the channel argument is not used in the format string CVS patchset: 6133 CVS date: 2004/02/12 18:02:17 --- src/demuxers/demux_matroska.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/demuxers/demux_matroska.c b/src/demuxers/demux_matroska.c index 1bb237026..d3712fbd6 100644 --- a/src/demuxers/demux_matroska.c +++ b/src/demuxers/demux_matroska.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_matroska.c,v 1.20 2004/02/08 18:17:28 jstembridge Exp $ + * $Id: demux_matroska.c,v 1.21 2004/02/12 18:02:17 mroi Exp $ * * demultiplexer for matroska streams * @@ -1730,7 +1730,7 @@ static int demux_matroska_get_optional_data (demux_plugin_t *this_gen, /* the string got truncated */ str[XINE_LANG_MAX - 2] = str[XINE_LANG_MAX - 3] = str[XINE_LANG_MAX - 4] = '.'; } else { - snprintf(str, XINE_LANG_MAX, "eng",channel); + snprintf(str, XINE_LANG_MAX, "eng"); } return DEMUX_OPTIONAL_SUCCESS; } @@ -1752,7 +1752,7 @@ static int demux_matroska_get_optional_data (demux_plugin_t *this_gen, /* the string got truncated */ str[XINE_LANG_MAX - 2] = str[XINE_LANG_MAX - 3] = str[XINE_LANG_MAX - 4] = '.'; } else { - snprintf(str, XINE_LANG_MAX, "eng", channel); + snprintf(str, XINE_LANG_MAX, "eng"); } return DEMUX_OPTIONAL_SUCCESS; } -- cgit v1.2.3