remove spurious newlines from debug output

Origin commit data
------------------
Commit: 6604178485
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2017-02-12 (Sun, 12 Feb 2017)
This commit is contained in:
Stefan Seyfried
2017-02-12 15:18:35 +01:00
committed by vanhofen
parent 8107c333eb
commit 9cc19fb187
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

@@ -115,7 +115,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());
if (femap.empty())
return false;
@@ -463,7 +463,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;
}
}