aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/esection.h
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-11-27 11:32:52 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-11-27 11:32:52 +0000
commit2e90ba76e9e70689b9821c7daaf2110550e05520 (patch)
treec39e1553b0364c19f6a162676a82a85d248a031f /lib/dvb/esection.h
parentdc6d1cf177e2d72829720075f236d8eef990fd34 (diff)
downloadenigma2-2e90ba76e9e70689b9821c7daaf2110550e05520.tar.gz
enigma2-2e90ba76e9e70689b9821c7daaf2110550e05520.zip
fix warnings
Diffstat (limited to 'lib/dvb/esection.h')
-rw-r--r--lib/dvb/esection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dvb/esection.h b/lib/dvb/esection.h
index d7fd728a..98d53b48 100644
--- a/lib/dvb/esection.h
+++ b/lib/dvb/esection.h
@@ -19,7 +19,7 @@ private:
void timeout();
ePtr<eConnection> 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<void, int> tableReady;
eGTable();
@@ -38,7 +38,7 @@ private:
std::vector<Section*> sections;
std::set<int> avail;
protected:
- int createTable(int nr, const __u8 *data, unsigned int max)
+ int createTable(unsigned int nr, const __u8 *data, unsigned int max)
{
unsigned int ssize = sections.size();
if (max < ssize || nr >= max)