From e5fde77e56743cd2e7ad816d7d0008189928858c Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 8 Feb 2014 13:00:39 +0100 Subject: Fixed some compiler warnings with Clang 3.4.1 --- PLUGINS/src/pictures/player.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'PLUGINS') diff --git a/PLUGINS/src/pictures/player.c b/PLUGINS/src/pictures/player.c index 6048d4cb..d2dbd7b8 100644 --- a/PLUGINS/src/pictures/player.c +++ b/PLUGINS/src/pictures/player.c @@ -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; -- cgit v1.2.3