1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-25 04:38:01 +00:00

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
This commit is contained in:
rik 2008-01-13 00:10:02 +00:00
parent a84db25ae4
commit 1045dcfb00

View File

@ -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;