mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
No longer using tabs as delimiter in the EPG bugfix log
This commit is contained in:
parent
adc88b3790
commit
5e16ed7aab
2
HISTORY
2
HISTORY
@ -6858,3 +6858,5 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed a possible crash when canceling VDR while displaying subtitles, and the
|
- Fixed a possible crash when canceling VDR while displaying subtitles, and the
|
||||||
primary device is no longer available.
|
primary device is no longer available.
|
||||||
- Improved handling subtitles of BBC channels.
|
- Improved handling subtitles of BBC channels.
|
||||||
|
- No longer using tabs as delimiter in the EPG bugfix log (they were garbled in the
|
||||||
|
log file).
|
||||||
|
8
epg.c
8
epg.c
@ -7,7 +7,7 @@
|
|||||||
* Original version (as used in VDR before 1.3.0) written by
|
* Original version (as used in VDR before 1.3.0) written by
|
||||||
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
|
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
|
||||||
*
|
*
|
||||||
* $Id: epg.c 2.9 2012/02/11 12:33:04 kls Exp $
|
* $Id: epg.c 2.10 2012/02/13 14:51:29 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "epg.h"
|
#include "epg.h"
|
||||||
@ -587,7 +587,7 @@ void ReportEpgBugFixStats(bool Reset)
|
|||||||
bool GotHits = false;
|
bool GotHits = false;
|
||||||
char buffer[1024];
|
char buffer[1024];
|
||||||
for (int i = 0; i < MAXEPGBUGFIXSTATS; i++) {
|
for (int i = 0; i < MAXEPGBUGFIXSTATS; i++) {
|
||||||
const char *delim = "\t";
|
const char *delim = " ";
|
||||||
tEpgBugFixStats *p = &EpgBugFixStats[i];
|
tEpgBugFixStats *p = &EpgBugFixStats[i];
|
||||||
if (p->hits) {
|
if (p->hits) {
|
||||||
bool PrintedStats = false;
|
bool PrintedStats = false;
|
||||||
@ -604,11 +604,11 @@ void ReportEpgBugFixStats(bool Reset)
|
|||||||
dsyslog("CHANNELS READS THIS: PLEASE TAKE A LOOK AT THE FUNCTION cEvent::FixEpgBugs()");
|
dsyslog("CHANNELS READS THIS: PLEASE TAKE A LOOK AT THE FUNCTION cEvent::FixEpgBugs()");
|
||||||
dsyslog("IN VDR/epg.c TO LEARN WHAT'S WRONG WITH YOUR DATA, AND FIX IT!");
|
dsyslog("IN VDR/epg.c TO LEARN WHAT'S WRONG WITH YOUR DATA, AND FIX IT!");
|
||||||
dsyslog("=====================");
|
dsyslog("=====================");
|
||||||
dsyslog("Fix\tHits\tChannels");
|
dsyslog("Fix Hits Channels");
|
||||||
GotHits = true;
|
GotHits = true;
|
||||||
}
|
}
|
||||||
if (!PrintedStats) {
|
if (!PrintedStats) {
|
||||||
q += snprintf(q, sizeof(buffer) - (q - buffer), "%d\t%d", i, p->hits);
|
q += snprintf(q, sizeof(buffer) - (q - buffer), "%-3d %-4d", i, p->hits);
|
||||||
PrintedStats = true;
|
PrintedStats = true;
|
||||||
}
|
}
|
||||||
q += snprintf(q, sizeof(buffer) - (q - buffer), "%s%s", delim, channel->Name());
|
q += snprintf(q, sizeof(buffer) - (q - buffer), "%s%s", delim, channel->Name());
|
||||||
|
Loading…
Reference in New Issue
Block a user