Skip to content

Commit

Permalink
remove unneeded casts
Browse files Browse the repository at this point in the history
  • Loading branch information
dekarl committed Jan 25, 2016
1 parent 770f9eb commit a11d8cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/libs/libmythtv/eithelper.cpp
Expand Up @@ -420,8 +420,8 @@ void EITHelper::AddEIT(const DVBEventInformationTable *eit)
(FixupKey)eit->ServiceID()];

fix |= fixup[1ll<<48 | (((FixupKey)eit->SourceTransportID()) << 32) |
(FixupKey)((FixupKey)eit->SourceNetworkID() << 16) |
(FixupKey)(FixupKey)eit->ServiceID()];
((FixupKey)eit->SourceNetworkID() << 16) |
(FixupKey)eit->ServiceID()];
}

uint tableid = eit->TableID();
Expand Down

0 comments on commit a11d8cb

Please sign in to comment.