mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-27 15:32:52 +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
------------------
Commit: 4dbeb3a31e
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-11-03 (Sat, 03 Nov 2012)
This commit is contained in:
committed by
Jacek Jendrzej
parent
b66d406771
commit
80a87017f3
@@ -660,7 +660,7 @@ int CScanSetup::showScanMenuLnbSetup()
|
||||
sat_setup->addIntroItems();
|
||||
|
||||
satellite_map_t & satmap = fe->getSatellites();
|
||||
INFO("satmap size = %d", satmap.size());
|
||||
INFO("satmap size = %d", (int)satmap.size());
|
||||
|
||||
CMenuWidget *tmp[satmap.size()];
|
||||
for (sat_iterator_t sit = satmap.begin(); sit != satmap.end(); ++sit)
|
||||
|
Reference in New Issue
Block a user