diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2014-02-08 13:00:39 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2014-02-08 13:00:39 +0100 |
commit | e5fde77e56743cd2e7ad816d7d0008189928858c (patch) | |
tree | 193253777ebdcc3a95d5d7578c1e47538692a196 /menu.c | |
parent | bfb9c8fddd0cf8a7c35271d58a37da4444e8fecc (diff) | |
download | vdr-e5fde77e56743cd2e7ad816d7d0008189928858c.tar.gz vdr-e5fde77e56743cd2e7ad816d7d0008189928858c.tar.bz2 |
Fixed some compiler warnings with Clang 3.4.1
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 3.18 2014/01/30 09:04:06 kls Exp $ + * $Id: menu.c 3.19 2014/02/08 12:36:12 kls Exp $ */ #include "menu.h" @@ -983,7 +983,7 @@ eOSState cMenuEditTimer::ProcessKey(eKeys Key) if (!*data.file) strcpy(data.file, data.Channel()->ShortName(true)); if (timer) { - if (memcmp(timer, &data, sizeof(data)) != 0) + if (memcmp((void *)timer, &data, sizeof(data)) != 0) *timer = data; if (addIfConfirmed) Timers.Add(timer); |