# HG changeset patch # User rik # Date 1200183002 0 # Node ID fcac7e2a38fc5d13b10fa89fcd332d7bf50e7c67 # Parent b13f792efe7bc9d17c5ee4ee3827f3a5bd7b9d37 fix bug in error message (found by Diego through a compiler warning) diff -r b13f792efe7b -r fcac7e2a38fc libvo/vo_bl.c --- a/libvo/vo_bl.c Sat Jan 12 16:30:41 2008 +0000 +++ b/libvo/vo_bl.c Sun Jan 13 00:10:02 2008 +0000 @@ -422,7 +422,7 @@ 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;