mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 16:31:05 +02:00
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:
committed by
vanhofen
parent
8107c333eb
commit
9cc19fb187
@@ -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()
|
||||||
|
@@ -115,7 +115,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());
|
||||||
if (femap.empty())
|
if (femap.empty())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
@@ -463,7 +463,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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user