diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2012-10-21 19:08:07 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2012-10-21 19:08:07 +0200 |
commit | a09e46d0dbeb29954f6ae72b95e00063455de0a2 (patch) | |
tree | bcbbc186a8eb319e15b366b75a30e0dc128e3326 /eit2.c | |
parent | 28d4e67c2a4bcb355f8e525890a9acf515a70f70 (diff) | |
download | vdr-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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()); |