summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorrik <rik@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-13 00:10:02 +0000
committerrik <rik@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-13 00:10:02 +0000
commit1045dcfb0071a966fb71f20bb85bfcc0b5d18b48 (patch)
treef987ebee268666deb3664a01660e836b4796d1be /libvo
parenta84db25ae46c3c90ec9801fcd7d26ea6d94d28b9 (diff)
downloadmpv-1045dcfb0071a966fb71f20bb85bfcc0b5d18b48.tar.bz2
mpv-1045dcfb0071a966fb71f20bb85bfcc0b5d18b48.tar.xz
fix bug in error message (found by Diego through a compiler warning)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25703 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_bl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_bl.c b/libvo/vo_bl.c
index e2f857eca1..8c37139ec8 100644
--- a/libvo/vo_bl.c
+++ b/libvo/vo_bl.c
@@ -422,7 +422,7 @@ static int preinit(const char *arg) {
bl_hosts[no_bl_hosts].port);
no_bl_hosts++;
} else {
- mp_msg(MSGT_VO, MSGL_ERR, "bl: syntax error in entry %d in subdevice %s, should be a comma separated\nlist of host=name:port and file=foo.bml\n", no_bl_hosts, no_bl_files, arg);
+ mp_msg(MSGT_VO, MSGL_ERR, "bl: syntax error in entry %d in subdevice %s, should be a comma separated\nlist of host=name:port and file=foo.bml\n", no_bl_hosts + no_bl_files, arg);
return 1;
}
p = ++q;