diff options
author | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2004-03-14 07:11:42 +0000 |
---|---|---|
committer | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2004-03-14 07:11:42 +0000 |
commit | 1a6167b7b7e7223edd2a5bee630bd21eefae6446 (patch) | |
tree | 3fdd7b84e99849e1a2abf763d3180f5fb50f7e02 /plugin_dvb.c | |
parent | 924eabb9cef6589471dc568c01402a64d27e0476 (diff) | |
download | lcd4linux-1a6167b7b7e7223edd2a5bee630bd21eefae6446.tar.gz |
[lcd4linux @ 2004-03-14 07:11:42 by reinelt]
parameter count fixed for plugin_dvb()
plugin_APM (battery status) ported
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@401 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'plugin_dvb.c')
-rw-r--r-- | plugin_dvb.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/plugin_dvb.c b/plugin_dvb.c index 31780b8..9bfa5f3 100644 --- a/plugin_dvb.c +++ b/plugin_dvb.c @@ -1,4 +1,4 @@ -/* $Id: plugin_dvb.c,v 1.3 2004/03/03 03:47:04 reinelt Exp $ +/* $Id: plugin_dvb.c,v 1.4 2004/03/14 07:11:42 reinelt Exp $ * * plugin for DVB status * @@ -23,6 +23,10 @@ * * * $Log: plugin_dvb.c,v $ + * Revision 1.4 2004/03/14 07:11:42 reinelt + * parameter count fixed for plugin_dvb() + * plugin_APM (battery status) ported + * * Revision 1.3 2004/03/03 03:47:04 reinelt * big patch from Martin Hejl: * - use qprintf() where appropriate @@ -150,7 +154,7 @@ static void my_dvb (RESULT *result, RESULT *arg1) int plugin_init_dvb (void) { - AddFunction ("dvb", 3, my_dvb); + AddFunction ("dvb", 1, my_dvb); return 0; } |