mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-26 23:13:00 +02:00
neutrino: fix 32<->64bit format string warnings
use portable C99 format string macros for 64bit types to
fix many warnings when compiling for 64bit architectures,
add some (int) casts for size_t
Origin commit data
------------------
Branch: ni/coolstream
Commit: e0acbd3ddb
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-11-03 (Sat, 03 Nov 2012)
------------------
This commit was generated by Migit
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
/*
|
||||
Neutrino-GUI - DBoxII-Project
|
||||
|
||||
Copyright (C) 2010, 2012 Stefan Seyfried
|
||||
Copyright (C) 2011 CoolStream International Ltd
|
||||
|
||||
License: GPLv2
|
||||
@@ -452,7 +453,7 @@ int CCAMMenuHandler::doMenu(int slot, CA_SLOT_TYPE slotType)
|
||||
g_Locale->getText(slotType == CA_SLOT_TYPE_CI ? LOCALE_CI_WAITING : LOCALE_SC_WAITING));
|
||||
|
||||
g_RCInput->getMsgAbsoluteTimeout (&msg, &data, &timeoutEnd);
|
||||
printf("CCAMMenuHandler::doMenu: msg %x data %x\n", msg, data);
|
||||
printf("CCAMMenuHandler::doMenu: msg %lx data %lx\n", msg, data);
|
||||
if (msg == CRCInput::RC_timeout) {
|
||||
printf("CCAMMenuHandler::doMenu: menu timeout\n");
|
||||
hideHintBox();
|
||||
|
Reference in New Issue
Block a user