Fixed some compiler warnings with Clang 3.4.1

This commit is contained in:
Klaus Schmidinger
2014-02-08 13:00:39 +01:00
parent bfb9c8fddd
commit e5fde77e56
10 changed files with 16 additions and 20 deletions

View File

@@ -3,7 +3,7 @@
*
* See the README file for copyright information and how to reach the author.
*
* $Id: player.c 2.2 2012/04/28 11:58:15 kls Exp $
* $Id: player.c 3.1 2014/02/08 12:48:12 kls Exp $
*/
#include "player.h"
@@ -211,7 +211,7 @@ cString cPictureControl::GetHeader(void)
eOSState cPictureControl::ProcessKey(eKeys Key)
{
switch (Key) {
switch (int(Key)) {
case kUp:
case kPlay: slideShowDelay.Set();
slideShow = true;