X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/3f34d8c58420453e2158909cf7bf3730df6bf218..69725af53d310026a1d773f35f13b141269b3edc:/lib/dvb/esection.h diff --git a/lib/dvb/esection.h b/lib/dvb/esection.h index 88c652a0..98d53b48 100644 --- a/lib/dvb/esection.h +++ b/lib/dvb/esection.h @@ -19,7 +19,7 @@ private: void timeout(); ePtr m_sectionRead_conn; protected: - virtual int createTable(int nr, const __u8 *data, unsigned int max)=0; + virtual int createTable(unsigned int nr, const __u8 *data, unsigned int max)=0; public: Signal1 tableReady; eGTable(); @@ -38,9 +38,9 @@ private: std::vector sections; std::set avail; protected: - int createTable(int nr, const __u8 *data, unsigned int max) + int createTable(unsigned int nr, const __u8 *data, unsigned int max) { - int ssize = sections.size(); + unsigned int ssize = sections.size(); if (max < ssize || nr >= max) { eDebug("kaputt max(%d) < ssize(%d) || nr(%d) >= max(%d)",