summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--equalizer.c3
-rw-r--r--setup_menu.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/equalizer.c b/equalizer.c
index 8762c88c..c53530a3 100644
--- a/equalizer.c
+++ b/equalizer.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: equalizer.c,v 1.5 2008-11-20 11:46:30 rofafor Exp $
+ * $Id: equalizer.c,v 1.6 2010-04-16 10:32:35 phintuka Exp $
*
*/
@@ -95,6 +95,7 @@ eOSState cEqualizer::ProcessKey(eKeys key)
case kOk:
memcpy(xc.audio_equalizer, m_Values, sizeof(xc.audio_equalizer));
return osEnd;
+ default:; // all other keys - do nothing.
}
}
diff --git a/setup_menu.c b/setup_menu.c
index 48b599eb..2857268e 100644
--- a/setup_menu.c
+++ b/setup_menu.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: setup_menu.c,v 1.76 2010-03-12 23:00:26 phintuka Exp $
+ * $Id: setup_menu.c,v 1.77 2010-04-16 10:33:30 phintuka Exp $
*
*/
@@ -1808,6 +1808,7 @@ eOSState cTestGrayscale::ProcessKey(eKeys key)
cXinelibDevice::Instance().ConfigureVideo(xc.hue, xc.saturation, br, xc.sharpness, xc.noise_reduction, co, xc.overscan, xc.vo_aspect_ratio);
m_Osd->Flush();
return osContinue;
+ default:; // all other keys - do nothing.
}
}
return state;