sectionsd: fix signed/unsigned comparison warning

Origin commit data
------------------
Commit: f98501b5b1
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2016-01-09 (Sat, 09 Jan 2016)
This commit is contained in:
Stefan Seyfried
2016-01-09 20:53:56 +01:00
parent da77d69123
commit d83f6ea51f

View File

@@ -1486,7 +1486,8 @@ void CTimeThread::run()
/* speed up shutdown by looping around Read() */
do {
rc = dmx->Read(static_buf, MAX_SECTION_LENGTH, timeoutInMSeconds / 12);
} while (running && rc == 0 && (time_monotonic_ms() - start) < timeoutInMSeconds);
} while (running && rc == 0
&& (time_monotonic_ms() - start) < (time_t)timeoutInMSeconds);
#endif
xprintf("%s: getting DVB time done : %d messaging_neutrino_sets_time %d\n", name.c_str(), rc, messaging_neutrino_sets_time);
if (rc > 0) {