r25703 - trunk/libvo/vo_bl.c
Author: rik Date: Sun Jan 13 01:10:02 2008 New Revision: 25703 Log: fix bug in error message (found by Diego through a compiler warning) Modified: trunk/libvo/vo_bl.c Modified: trunk/libvo/vo_bl.c ============================================================================== --- trunk/libvo/vo_bl.c (original) +++ trunk/libvo/vo_bl.c Sun Jan 13 01:10:02 2008 @@ -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;
participants (1)
-
rik