summaryrefslogtreecommitdiffstats
path: root/input
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-12 22:24:19 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-12 22:24:19 +0000
commitfcd45c51116c5988435e02f53c9d274537818666 (patch)
tree0f3686427958465f918211262df500c6c0d7c6fb /input
parent46b5cab89e3af9dc409cd7365c3712b17f250350 (diff)
downloadmpv-fcd45c51116c5988435e02f53c9d274537818666.tar.bz2
mpv-fcd45c51116c5988435e02f53c9d274537818666.tar.xz
slight overall verbosity reduction
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20191 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'input')
-rw-r--r--input/joystick.c2
-rw-r--r--input/lirc.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/input/joystick.c b/input/joystick.c
index cd77dd42d5..c432bf7cf4 100644
--- a/input/joystick.c
+++ b/input/joystick.c
@@ -36,7 +36,7 @@ int mp_input_joystick_init(char* dev) {
int inited = 0;
struct js_event ev;
- mp_msg(MSGT_INPUT,MSGL_INFO,MSGTR_INPUT_JOYSTICK_Opening,dev ? dev : JS_DEV);
+ mp_msg(MSGT_INPUT,MSGL_V,MSGTR_INPUT_JOYSTICK_Opening,dev ? dev : JS_DEV);
fd = open( dev ? dev : JS_DEV , O_RDONLY | O_NONBLOCK );
if(fd < 0) {
diff --git a/input/lirc.c b/input/lirc.c
index 9694e64367..92d64833d6 100644
--- a/input/lirc.c
+++ b/input/lirc.c
@@ -23,9 +23,9 @@ int
mp_input_lirc_init(void) {
int lirc_sock;
- mp_msg(MSGT_LIRC,MSGL_INFO,MSGTR_SettingUpLIRC);
+ mp_msg(MSGT_LIRC,MSGL_V,MSGTR_SettingUpLIRC);
if((lirc_sock=lirc_init("mplayer",1))==-1){
- mp_msg(MSGT_LIRC,MSGL_ERR,MSGTR_LIRCopenfailed MSGTR_LIRCdisabled);
+ mp_msg(MSGT_LIRC,MSGL_ERR,MSGTR_LIRCopenfailed);
return -1;
}