From 1fa91ad1369d8b6e14836f99168b20320eb8b441 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sun, 12 Feb 2017 15:18:35 +0100 Subject: [PATCH] remove spurious newlines from debug output --- src/driver/scanepg.cpp | 2 +- src/zapit/src/femanager.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/driver/scanepg.cpp b/src/driver/scanepg.cpp index 3cd7e0280..2ea208d61 100644 --- a/src/driver/scanepg.cpp +++ b/src/driver/scanepg.cpp @@ -91,7 +91,7 @@ void CEpgScan::ConfigureEIT() count++; } } - INFO("added %d channels to EIT white list\n", count); + INFO("added %d channels to EIT white list", count); } void CEpgScan::Clear() diff --git a/src/zapit/src/femanager.cpp b/src/zapit/src/femanager.cpp index 001987184..ad6db6b83 100644 --- a/src/zapit/src/femanager.cpp +++ b/src/zapit/src/femanager.cpp @@ -113,7 +113,7 @@ bool CFEManager::Init() for (unsigned i = 0; i < MAX_DMX_UNITS; i++) dmap.push_back(CFeDmx(i)); - INFO("found %d frontends, %d demuxes\n", (int)femap.size(), (int)dmap.size()); + INFO("found %d frontends, %d demuxes", (int)femap.size(), (int)dmap.size()); /* for testing without a frontend, export SIMULATE_FE=1 */ if (femap.empty() && getenv("SIMULATE_FE")) { INFO("SIMULATE_FE is set, adding dummy frontend for testing"); @@ -477,7 +477,7 @@ void CFEManager::linkFrontends(bool init) for(unsigned i = 0; i < MAX_DMX_UNITS; i++) { if (demuxes[i] == 0) { unused_demux = i; - INFO("pip demux: %d\n", unused_demux); + INFO("pip demux: %d", unused_demux); break; } }