summaryrefslogtreecommitdiff
path: root/eit2.c
diff options
context:
space:
mode:
authorDimitar Petrovski <dimeptr@gmail.com>2012-10-21 19:08:07 +0200
committerDimitar Petrovski <dimeptr@gmail.com>2012-10-21 19:08:07 +0200
commita09e46d0dbeb29954f6ae72b95e00063455de0a2 (patch)
treebcbbc186a8eb319e15b366b75a30e0dc128e3326 /eit2.c
parent28d4e67c2a4bcb355f8e525890a9acf515a70f70 (diff)
downloadvdr-plugin-eepg-a09e46d0dbeb29954f6ae72b95e00063455de0a2.tar.gz
vdr-plugin-eepg-a09e46d0dbeb29954f6ae72b95e00063455de0a2.tar.bz2
fix compile with some compiler
null check revert some changes
Diffstat (limited to 'eit2.c')
-rw-r--r--eit2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eit2.c b/eit2.c
index 12a7a95..ca6c759 100644
--- a/eit2.c
+++ b/eit2.c
@@ -632,7 +632,7 @@ cEIT2::cEIT2 (cSchedule * Schedule)
bool searchOtherSatPositions = Format == DISH_BEV;
- tChannelID channelID (Schedule->ChannelID().Source(), getOriginalNetworkId (), getTransportStreamId (), getServiceId ());
+ tChannelID channelID = Schedule->ChannelID();
channel = GetChannelByID (channelID, searchOtherSatPositions);
if (!channel) {
LogD(3, prep("!channel channelID: %s"), *channelID.ToString());