diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-12-02 11:30:19 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-12-02 11:30:19 +0100 |
commit | 19f39258f0b3131345c1b0b3aa1a5c03f88bc33a (patch) | |
tree | e031524a37d3ea229d11b33766e4233567f16412 /menu.c | |
parent | 661da094e14b6ab76eae98a5eeb2c3ac6c914df4 (diff) | |
download | vdr-19f39258f0b3131345c1b0b3aa1a5c03f88bc33a.tar.gz vdr-19f39258f0b3131345c1b0b3aa1a5c03f88bc33a.tar.bz2 |
Replaced 'unsigned long long' with 'uint32_t' and 'uint64' with 'uint64_t' to avoid problems on 64-bit machines
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 1.445 2006/11/04 13:13:18 kls Exp $ + * $Id: menu.c 1.446 2006/12/02 11:12:02 kls Exp $ */ #include "menu.h" @@ -3280,7 +3280,7 @@ eOSState cDisplayChannel::ProcessKey(eKeys Key) return osEnd; } }; - if (!timeout || lastTime.Elapsed() < (uint64)(Setup.ChannelInfoTime * 1000)) { + if (!timeout || lastTime.Elapsed() < (uint64_t)(Setup.ChannelInfoTime * 1000)) { if (Key == kNone && !number && group < 0 && !NewChannel && channel && channel->Number() != cDevice::CurrentChannel()) { // makes sure a channel switch through the SVDRP CHAN command is displayed channel = Channels.GetByNumber(cDevice::CurrentChannel()); |