diff options
author | phintuka <phintuka> | 2010-05-21 12:01:53 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-05-21 12:01:53 +0000 |
commit | 9828fc3cb075f9a412320743a4f1b12ce698cea3 (patch) | |
tree | 829d3f7d25f81e5f9ddce7adde8cd4836cd95337 | |
parent | bb7f698042cdafb335989d5c2feb6a0b55d243c4 (diff) | |
download | xineliboutput-9828fc3cb075f9a412320743a4f1b12ce698cea3.tar.gz xineliboutput-9828fc3cb075f9a412320743a4f1b12ce698cea3.tar.bz2 |
Added missing default cases
(Thanks to Winfried Koehler)
-rw-r--r-- | xine_sxfe_frontend.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/xine_sxfe_frontend.c b/xine_sxfe_frontend.c index c7e1f925..14d6eb34 100644 --- a/xine_sxfe_frontend.c +++ b/xine_sxfe_frontend.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_sxfe_frontend.c,v 1.117 2010-01-03 09:54:39 phintuka Exp $ + * $Id: xine_sxfe_frontend.c,v 1.118 2010-05-21 12:01:53 phintuka Exp $ * */ @@ -1576,6 +1576,8 @@ static void XButtonEvent_handler(sxfe_t *this, XButtonEvent *bev) } } break; + + default:; // ignore other buttons. } } @@ -1659,6 +1661,7 @@ static int sxfe_run(frontend_t *this_gen) } break; } + default:; // ignore other events. } if (event.type == this->completion_event) |