diff options
author | phintuka <phintuka> | 2009-12-29 13:48:48 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-12-29 13:48:48 +0000 |
commit | 9bbc137fb79b2e40f412b1eec7dc5d8fdba85905 (patch) | |
tree | 1f6058902a5e86f02a441d055c582d30266fa6af | |
parent | 53aefa845cd85815781a1d9e06752ba930eaf1c0 (diff) | |
download | xineliboutput-9bbc137fb79b2e40f412b1eec7dc5d8fdba85905.tar.gz xineliboutput-9bbc137fb79b2e40f412b1eec7dc5d8fdba85905.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 06dd08e3..657fe7bb 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.103 2009-10-08 19:52:20 phintuka Exp $ + * $Id: xine_frontend.c,v 1.104 2009-12-29 13:48:48 phintuka Exp $ * */ @@ -1213,14 +1213,14 @@ static int fe_is_finished(frontend_t *this_gen, int slave_stream) if(!this || this->playback_finished) return FE_XINE_ERROR; - if(this->terminate_key_pressed) + if (this->terminate_key_pressed) return FE_XINE_EXIT; - - if(slave_stream) { - if(!this->slave_stream || this->slave_playback_finished) + + if (slave_stream) { + if (!this->slave_stream || this->slave_playback_finished) return FE_XINE_EXIT; } - + return FE_XINE_RUNNING; } |