From de6c0e1f89eb8daadb794b31ac29c12eb59cde86 Mon Sep 17 00:00:00 2001 From: Alexander Pipelka Date: Mon, 25 Sep 2017 20:34:38 +0200 Subject: [PATCH] Minor coding-style fix. --- sectionfilter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sectionfilter.c b/sectionfilter.c index 89e6a9b..7b94a52 100644 --- a/sectionfilter.c +++ b/sectionfilter.c @@ -290,7 +290,7 @@ bool cSatipSectionFilterHandler::Send(void) // send data for (unsigned int i = 0; i < eMaxSecFilterCount; ++i) { - if(pollFdsM[i].revents & POLLOUT) + if (pollFdsM[i].revents & POLLOUT) filtersM[i]->Send(); } return true;