1
0
mirror of https://github.com/rofafor/vdr-plugin-satip.git synced 2023-10-10 13:37:42 +02:00

Minor coding-style fix.

This commit is contained in:
Alexander Pipelka 2017-09-25 20:34:38 +02:00 committed by Rolf Ahrenberg
parent bbd7f2da51
commit de6c0e1f89

View File

@ -290,7 +290,7 @@ bool cSatipSectionFilterHandler::Send(void)
// send data // send data
for (unsigned int i = 0; i < eMaxSecFilterCount; ++i) { for (unsigned int i = 0; i < eMaxSecFilterCount; ++i) {
if(pollFdsM[i].revents & POLLOUT) if (pollFdsM[i].revents & POLLOUT)
filtersM[i]->Send(); filtersM[i]->Send();
} }
return true; return true;