diff options
author | phintuka <phintuka> | 2008-04-13 23:11:51 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-04-13 23:11:51 +0000 |
commit | 7171e97d9199eaff3b8bf980717fde078e666f88 (patch) | |
tree | 7bdc877f50b1dc7cef5c66964b43777dab8fabe5 | |
parent | ad79ad1052b222008f0404770958b9ff85419ff8 (diff) | |
download | xineliboutput-7171e97d9199eaff3b8bf980717fde078e666f88.tar.gz xineliboutput-7171e97d9199eaff3b8bf980717fde078e666f88.tar.bz2 |
Cosmetics
-rw-r--r-- | xine_frontend.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xine_frontend.c b/xine_frontend.c index b379b4f6..11034235 100644 --- a/xine_frontend.c +++ b/xine_frontend.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_frontend.c,v 1.52 2008-03-31 20:36:03 phintuka Exp $ + * $Id: xine_frontend.c,v 1.53 2008-04-13 23:11:51 phintuka Exp $ * */ @@ -100,7 +100,7 @@ static int find_input(fe_t *this) return 1; } -static void *fe_control(frontend_t *fe_handle, const char *cmd); +static void *fe_control(frontend_t *this_gen, const char *cmd); /* * xine callbacks @@ -1272,16 +1272,16 @@ static void process_xine_keypress(input_plugin_t *input, /* * Control messages from input plugin */ -static void *fe_control(frontend_t *fe_handle, const char *cmd) +static void *fe_control(frontend_t *this_gen, const char *cmd) { - fe_t *this = (fe_t*)fe_handle; + fe_t *this = (fe_t*)this_gen; post_plugins_t *posts; /*LOGDBG("fe_control(\"%s\")", cmd);*/ if(!cmd || !this) { LOGMSG("fe_control(0x%lx,0x%lx) : invalid argument", - (unsigned long int)fe_handle, (unsigned long int)cmd); + (unsigned long int)this_gen, (unsigned long int)cmd); return NULL; } @@ -1295,7 +1295,7 @@ static void *fe_control(frontend_t *fe_handle, const char *cmd) if(!strncmp(cmd, "SLAVE CLOSED", 16)) { /*LOGMSG("fe_control : slave closed");*/ if(this->slave_stream) - fe_control(fe_handle, "SLAVE 0x0\r\n"); + fe_control(this_gen, "SLAVE 0x0\r\n"); init_dummy_ports(this, 0); } else if(!strncmp(cmd, "SLAVE 0x", 8)) { |