mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 09:21:09 +02:00
src/zapit/src/channel: fix warning: this statement may fall through [-Wimplicit-fallthrough=]
Origin commit data
------------------
Branch: ni/coolstream
Commit: abf7116ab2
Author: max_10 <max_10@gmx.de>
Date: 2018-09-19 (Wed, 19 Sep 2018)
Origin message was:
------------------
-src/zapit/src/channel: fix warning: this statement may fall through [-Wimplicit-fallthrough=]
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -216,10 +216,10 @@ bool CZapitChannel::isUHD()
|
||||
case ST_DIGITAL_TELEVISION_SERVICE:
|
||||
case 0x19:
|
||||
{
|
||||
if (strstr(name.c_str(), "UHD"))
|
||||
return true;
|
||||
if (strstr(name.c_str(), "4k"))
|
||||
if (strstr(name.c_str(), "UHD") || (strstr(name.c_str(), "4k")))
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
}
|
||||
default:
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user