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();
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)
{
- int ssize = sections.size();
+ unsigned int ssize = sections.size();
if (max < ssize || nr >= max)
{
eDebug("kaputt max(%d) < ssize(%d) || nr(%d) >= max(%d)",
for (unsigned int i = 0; i < max; ++i)
if (avail.find(i) != avail.end())
- printf("+");
+ eDebugNoNewLine("+");
else
- printf("-");
+ eDebugNoNewLine("-");
eDebug(" %d/%d TID %02x", avail.size(), max, data[0]);