mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 09:21:09 +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
@@ -5,6 +5,7 @@
|
||||
* 2003 by thegoodguy <thegoodguy@berlios.de>
|
||||
*
|
||||
* Copyright (C) 2011-2012 CoolStream International Ltd
|
||||
* Copyright (C) 2007-2009, 2011-2012 Stefan Seyfried
|
||||
*
|
||||
* License: GPLv2
|
||||
*
|
||||
@@ -239,7 +240,7 @@ printf(" [%s cache] old section for table 0x%02x sid 0x%04x section 0x%02x last
|
||||
#endif
|
||||
if(seenSections == calcedSections) {
|
||||
#ifdef DEBUG_COMPLETE
|
||||
xcprintf(" %s cache %02x complete: %d", name.c_str(), filters[filter_index].filter, seenSections.size());
|
||||
xcprintf(" %s cache %02x complete: %d", name.c_str(), filters[filter_index].filter, (int)seenSections.size());
|
||||
#endif
|
||||
/* FIXME this algo fail sometimes:
|
||||
* [cnThread cache] new section for table 0x4e sid 0x0a39 section 0x00 last 0x00 slast 0x00 seen 1 calc 1
|
||||
|
Reference in New Issue
Block a user