mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 08:51:10 +02:00
fixes for 64bit archs: don't assume a pointer is 32bit wide
This commit is contained in:
@@ -1351,8 +1351,8 @@ CZapitChannel* CChannelList::getPrevNextChannel(int key, unsigned int &sl)
|
||||
}
|
||||
sl = cactive;
|
||||
channel = bouquetList->Bouquets[bactive]->channelList->getChannelFromIndex(cactive);
|
||||
printf("CChannelList::getPrevNextChannel: selected %d total %d active bouquet %d total %d channel %x (%s)\n",
|
||||
cactive, chanlist.size(), bactive, bsize, (int) channel, channel ? channel->getName().c_str(): "");
|
||||
printf("CChannelList::getPrevNextChannel: selected %d total %d active bouquet %d total %d channel %p (%s)\n",
|
||||
cactive, chanlist.size(), bactive, bsize, channel, channel ? channel->getName().c_str(): "");
|
||||
} else {
|
||||
if ((key == g_settings.key_quickzap_down) || (key == CRCInput::RC_left)) {
|
||||
if(sl == 0)
|
||||
|
Reference in New Issue
Block a user