remove spurious newlines from debug output

This commit is contained in:
Stefan Seyfried
2017-02-12 15:18:35 +01:00
parent b9da7f01bf
commit 1fa91ad136
2 changed files with 3 additions and 3 deletions

View File

@@ -91,7 +91,7 @@ void CEpgScan::ConfigureEIT()
count++; count++;
} }
} }
INFO("added %d channels to EIT white list\n", count); INFO("added %d channels to EIT white list", count);
} }
void CEpgScan::Clear() void CEpgScan::Clear()

View File

@@ -113,7 +113,7 @@ bool CFEManager::Init()
for (unsigned i = 0; i < MAX_DMX_UNITS; i++) for (unsigned i = 0; i < MAX_DMX_UNITS; i++)
dmap.push_back(CFeDmx(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 */ /* for testing without a frontend, export SIMULATE_FE=1 */
if (femap.empty() && getenv("SIMULATE_FE")) { if (femap.empty() && getenv("SIMULATE_FE")) {
INFO("SIMULATE_FE is set, adding dummy frontend for testing"); 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++) { for(unsigned i = 0; i < MAX_DMX_UNITS; i++) {
if (demuxes[i] == 0) { if (demuxes[i] == 0) {
unused_demux = i; unused_demux = i;
INFO("pip demux: %d\n", unused_demux); INFO("pip demux: %d", unused_demux);
break; break;
} }
} }