summaryrefslogtreecommitdiff
path: root/epghandler.c
diff options
context:
space:
mode:
Diffstat (limited to 'epghandler.c')
-rw-r--r--epghandler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epghandler.c b/epghandler.c
index 8302cdc..f7a5598 100644
--- a/epghandler.c
+++ b/epghandler.c
@@ -41,9 +41,9 @@ bool cEEpgHandler::HandleEitEvent(cSchedule* Schedule,
int nid = schedule->ChannelID().Nid();
if ((nid >= 0x1001 && nid <= 0x100B) || nid == 0x101 || nid == 0x100) {
//Set the Format for Eit events so that the new lines are not erased with FixEpgBugs
- if (Format != DISH_BEV) Format = DISH_BEV;
+ EFormat Format = DISH_BEV;
- SI::cEIT2 eit2(Schedule);
+ SI::cEIT2 eit2(Schedule, Format);
eit2.ProcessEitEvent(Schedule, EitEvent, TableID, Version);
return true;
}