remove spurious newlines from debug output

Origin commit data
------------------
Branch: ni/coolstream
Commit: 1fa91ad136
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2017-02-12 (Sun, 12 Feb 2017)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2017-02-12 15:18:35 +01:00
parent b8cc9f3d5c
commit f028e0d941
2 changed files with 3 additions and 3 deletions

View File

@@ -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()

View File

@@ -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;
}
}