Mercurial > mplayer.hg
changeset 36548:b72ae5f17e3a
Fix number of arguments in mp_msg.
author | rtogni |
---|---|
date | Sun, 19 Jan 2014 17:30:23 +0000 |
parents | 324571df137c |
children | d59d34ca145b |
files | libmpdemux/demux_real.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpdemux/demux_real.c Sun Jan 19 15:58:54 2014 +0000 +++ b/libmpdemux/demux_real.c Sun Jan 19 17:30:23 2014 +0000 @@ -1287,7 +1287,7 @@ mp_msg(MSGT_DEMUX,MSGL_V,"Found MLTI in audio with %d substreams.\n", num_mlti); priv->is_mlti = 1; } else - mp_msg(MSGT_DEMUX,MSGL_V,"Found MLTI in audio with 1 substreams. Ingnoring\n", num_mlti); + mp_msg(MSGT_DEMUX,MSGL_V,"Found MLTI in audio with 1 substreams. Ingnoring\n"); if (num_mlti > MAX_MLTIIDX) { mp_msg(MSGT_DEMUX,MSGL_ERR,"Too many (%d) MLTI audio, truncating; expect problems. Please report to Mplayer developers.\n", num_mlti); num_mlti = MAX_MLTIIDX - 1; // Limit to max MLTI @@ -1586,7 +1586,7 @@ mp_msg(MSGT_DEMUX,MSGL_V,"Found MLTI in video with %d substreams.\n", num_mlti); priv->is_mlti = 1; } else - mp_msg(MSGT_DEMUX,MSGL_V,"Found MLTI in audio with 1 substreams. Ingnoring\n", num_mlti); + mp_msg(MSGT_DEMUX,MSGL_V,"Found MLTI in audio with 1 substreams. Ingnoring\n"); if (num_mlti > MAX_MLTIIDX) { mp_msg(MSGT_DEMUX,MSGL_ERR,"Too many (%d) MLTI video, truncating; expect problems. Please report to Mplayer developers.\n", num_mlti); num_mlti = MAX_MLTIIDX - 1; // Limit to max MLTI