From c465f0e2b92d67de968f925f93eb3f5bc1de036e Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sun, 27 Apr 2014 19:33:28 +0200 Subject: [PATCH] fastscan: fix format-string warning Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/fe5aafa9b5708161fc44c20415f6ff06f231ed35 Author: Stefan Seyfried Date: 2014-04-27 (Sun, 27 Apr 2014) --- src/zapit/src/fastscan.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zapit/src/fastscan.cpp b/src/zapit/src/fastscan.cpp index c7c552fed..142a33725 100644 --- a/src/zapit/src/fastscan.cpp +++ b/src/zapit/src/fastscan.cpp @@ -331,7 +331,7 @@ bool CServiceScan::ReadFst(unsigned short pid, unsigned short operator_id, bool } while(!one_section && (sectotal < last)); delete dmx; - printf("[FST] %d sections\n", fst_sections.size()); + printf("[FST] %zd sections\n", fst_sections.size()); return !fst_sections.empty(); }