diff options
author | phintuka <phintuka> | 2008-11-16 00:09:25 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-11-16 00:09:25 +0000 |
commit | f91782a3a182df586eb06feaffc61730ffa10a61 (patch) | |
tree | 75a0f5625733174d6161934b9cee43b2b57965df | |
parent | 5462f8d7d70e39e3c6fdb7c20c83882c2bb675db (diff) | |
download | xineliboutput-f91782a3a182df586eb06feaffc61730ffa10a61.tar.gz xineliboutput-f91782a3a182df586eb06feaffc61730ffa10a61.tar.bz2 |
Killed warning
-rw-r--r-- | xine_frontend_lirc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xine_frontend_lirc.c b/xine_frontend_lirc.c index 6f45f32e..a29fad6f 100644 --- a/xine_frontend_lirc.c +++ b/xine_frontend_lirc.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_frontend_lirc.c,v 1.17 2008-11-13 22:58:40 phintuka Exp $ + * $Id: xine_frontend_lirc.c,v 1.18 2008-11-16 00:09:25 phintuka Exp $ * */ /* @@ -111,7 +111,8 @@ static void *lirc_receiver_thread(void *fe_gen) LOGMSG("lirc forwarding started"); - nice(-1); + (void)nice(-1); + lircd_connect(); while(lirc_device_name && fd_lirc >= 0) { |