From fcd45c51116c5988435e02f53c9d274537818666 Mon Sep 17 00:00:00 2001 From: diego Date: Thu, 12 Oct 2006 22:24:19 +0000 Subject: slight overall verbosity reduction git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20191 b3059339-0415-0410-9bf9-f77b7e298cf2 --- input/joystick.c | 2 +- input/lirc.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'input') 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; } -- cgit v1.2.3