[MPlayer-cvslog] CVS: main/input input.c,1.103,1.104
Diego Biurrun CVS
syncmail at mplayerhq.hu
Mon Nov 15 10:09:30 CET 2004
- Previous message: [MPlayer-cvslog] CVS: main ChangeLog,1.140,1.141
- Next message: [MPlayer-cvslog] CVS: main codec-cfg.c, 1.113, 1.114 mencoder.c, 1.256, 1.257 mplayer.c, 1.810, 1.811 parser-cfg.c, 1.6, 1.7
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
CVS change done by Diego Biurrun CVS
Update of /cvsroot/mplayer/main/input
In directory mail:/var2/tmp/cvs-serv24647/input
Modified Files:
input.c
Log Message:
Reduce excessive verbosity.
Index: input.c
===================================================================
RCS file: /cvsroot/mplayer/main/input/input.c,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- input.c 30 Oct 2004 10:40:53 -0000 1.103
+++ input.c 15 Nov 2004 09:09:28 -0000 1.104
@@ -1352,7 +1352,7 @@
fd = open(file,O_RDONLY);
if(fd < 0) {
- mp_msg(MSGT_INPUT,MSGL_ERR,"Can't open input config file %s: %s\n",file,strerror(errno));
+ mp_msg(MSGT_INPUT,MSGL_V,"Can't open input config file %s: %s\n",file,strerror(errno));
return 0;
}
@@ -1378,7 +1378,7 @@
}
// Empty buffer : return
if(bs <= 1) {
- mp_msg(MSGT_INPUT,MSGL_INFO,"Input config file %s parsed: %d binds\n",file,n_binds);
+ mp_msg(MSGT_INPUT,MSGL_V,"Input config file %s parsed: %d binds\n",file,n_binds);
if(binds)
cmd_binds = binds;
close(fd);
@@ -1519,7 +1519,7 @@
// Try global conf dir
file = MPLAYER_CONFDIR "/input.conf";
if(! mp_input_parse_config(file))
- mp_msg(MSGT_INPUT,MSGL_WARN,"Falling back on default (hardcoded) input config\n");
+ mp_msg(MSGT_INPUT,MSGL_V,"Falling back on default (hardcoded) input config\n");
}
else
{
- Previous message: [MPlayer-cvslog] CVS: main ChangeLog,1.140,1.141
- Next message: [MPlayer-cvslog] CVS: main codec-cfg.c, 1.113, 1.114 mencoder.c, 1.256, 1.257 mplayer.c, 1.810, 1.811 parser-cfg.c, 1.6, 1.7
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list