aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-04-26 22:30:06 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-04-26 22:30:06 +0000
commitf1dada7c1609b051d29a65a51cc227449350ee16 (patch)
tree4a8d4a9cb168281703dc6073feb6f8cd007767e7 /lib
parent076cd7d18bc45cc7f1b2f6f08a49923d60840051 (diff)
downloadenigma2-f1dada7c1609b051d29a65a51cc227449350ee16.tar.gz
enigma2-f1dada7c1609b051d29a65a51cc227449350ee16.zip
make TheDOCs compiler happy
Diffstat (limited to 'lib')
-rw-r--r--lib/dvb/pmt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dvb/pmt.cpp b/lib/dvb/pmt.cpp
index 5e9c7602..b8663f4b 100644
--- a/lib/dvb/pmt.cpp
+++ b/lib/dvb/pmt.cpp
@@ -159,7 +159,7 @@ PyObject *eDVBServicePMTHandler::getCaIds()
{
case CA_DESCRIPTOR:
{
- CaDescriptor *cadescr = *desc;
+ const CaDescriptor *cadescr = *desc;
uint16_t caid = cadescr->getCaSystemId();
int idx=0;
while (caids[idx] && caids[idx] != caid)
@@ -177,7 +177,7 @@ PyObject *eDVBServicePMTHandler::getCaIds()
{
case CA_DESCRIPTOR:
{
- CaDescriptor *cadescr = *desc;
+ const CaDescriptor *cadescr = *desc;
uint16_t caid = cadescr->getCaSystemId();
int idx=0;
while (caids[idx] && caids[idx] != caid)