comparison libvo/vo_bl.c @ 25675:fcac7e2a38fc

fix bug in error message (found by Diego through a compiler warning)
author rik
date Sun, 13 Jan 2008 00:10:02 +0000
parents 5b70080c41d2
children c99d53b76ee5
comparison
equal deleted inserted replaced
25674:b13f792efe7b 25675:fcac7e2a38fc
420 "blhost[%d]: %s:%d\n", 420 "blhost[%d]: %s:%d\n",
421 no_bl_hosts, p, 421 no_bl_hosts, p,
422 bl_hosts[no_bl_hosts].port); 422 bl_hosts[no_bl_hosts].port);
423 no_bl_hosts++; 423 no_bl_hosts++;
424 } else { 424 } else {
425 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); 425 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);
426 return 1; 426 return 1;
427 } 427 }
428 p = ++q; 428 p = ++q;
429 } 429 }
430 430