mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 07:23:09 +02:00
lcd4l:fix comil warninig
This commit is contained in:
@@ -892,7 +892,7 @@ void CLCD4l::ParseInfo(uint64_t parseID, bool newID, bool firstRun)
|
|||||||
CSectionsdClient::CurrentNextInfo CurrentNext;
|
CSectionsdClient::CurrentNextInfo CurrentNext;
|
||||||
CEitManager::getInstance()->getCurrentNextServiceKey(channel_id, CurrentNext);
|
CEitManager::getInstance()->getCurrentNextServiceKey(channel_id, CurrentNext);
|
||||||
|
|
||||||
if (CSectionsdClient::epgflags::has_current)
|
if (CurrentNext.flags & CSectionsdClient::epgflags::has_current)
|
||||||
{
|
{
|
||||||
if (!CurrentNext.current_name.empty())
|
if (!CurrentNext.current_name.empty())
|
||||||
Event = CurrentNext.current_name;
|
Event = CurrentNext.current_name;
|
||||||
@@ -925,7 +925,7 @@ void CLCD4l::ParseInfo(uint64_t parseID, bool newID, bool firstRun)
|
|||||||
snprintf(Start, sizeof(Start), "%02d:%02d", tm_struct->tm_hour, tm_struct->tm_min);
|
snprintf(Start, sizeof(Start), "%02d:%02d", tm_struct->tm_hour, tm_struct->tm_min);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (CSectionsdClient::epgflags::has_next)
|
if (CurrentNext.flags & CSectionsdClient::epgflags::has_next)
|
||||||
{
|
{
|
||||||
Event += "\n"+ CurrentNext.next_name;
|
Event += "\n"+ CurrentNext.next_name;
|
||||||
time_t next_start_time = CurrentNext.next_zeit.startzeit;
|
time_t next_start_time = CurrentNext.next_zeit.startzeit;
|
||||||
|
Reference in New Issue
Block a user