From: Andreas Monzner Date: Wed, 26 Apr 2006 22:30:06 +0000 (+0000) Subject: make TheDOCs compiler happy X-Git-Tag: 2.6.0~3555 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/f1dada7c1609b051d29a65a51cc227449350ee16?ds=sidebyside make TheDOCs compiler happy --- 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)