fix compiler warnings

Origin commit data
------------------
Branch: ni/coolstream
Commit: 9c62e80325
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2020-01-09 (Thu, 09 Jan 2020)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Jacek Jendrzej
2020-01-09 21:37:16 +01:00
committed by vanhofen
parent 0ff4ceddc4
commit 50c9d6b6e8

View File

@@ -554,14 +554,17 @@ bool CPictureViewer::GetLogoName(const uint64_t &ChannelID, const std::string &C
CSectionsdClient::CurrentNextInfo CurrentNext;
CEitManager::getInstance()->getCurrentNextServiceKey(ChannelID, CurrentNext);
if (CSectionsdClient::epgflags::has_current && !CurrentNext.current_name.empty())
if (CurrentNext.flags & CSectionsdClient::epgflags::has_current && !CurrentNext.current_name.empty())
EventName = CurrentNext.current_name;
}
// add neccessary paths to v_path
v_path.clear();
if (lcd4l_mode)
if (lcd4l_mode){
#ifdef ENABLE_LCD4LINUX
v_path.push_back(g_settings.lcd4l_logodir);
#endif
}
v_path.push_back(g_settings.logo_hdd_dir);
if (g_settings.logo_hdd_dir != LOGODIR_VAR)
v_path.push_back(LOGODIR_VAR);