diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-11-23 02:17:58 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-11-23 02:17:58 +0000 |
| commit | bc2ca7e050e29371cf973fc4a780f99e7c36c87c (patch) | |
| tree | 868c527f4c3432f17633bb0c317516cd50269173 /lib/dvb_ci | |
| parent | edc34b9bd8dcfec5c0509663a8e68e20b0066c78 (diff) | |
| download | enigma2-bc2ca7e050e29371cf973fc4a780f99e7c36c87c.tar.gz enigma2-bc2ca7e050e29371cf973fc4a780f99e7c36c87c.zip | |
add return to non-void function
Diffstat (limited to 'lib/dvb_ci')
| -rw-r--r-- | lib/dvb_ci/dvbci_camgr.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/dvb_ci/dvbci_camgr.cpp b/lib/dvb_ci/dvbci_camgr.cpp index b7651464..1d172b1c 100644 --- a/lib/dvb_ci/dvbci_camgr.cpp +++ b/lib/dvb_ci/dvbci_camgr.cpp @@ -61,9 +61,10 @@ int eDVBCICAManagerSession::doAction() int eDVBCICAManagerSession::sendCAPMT(unsigned char *data, int len) { - int i; const unsigned char tag[3]={0x9F, 0x80, 0x32}; // ca_pmt sendAPDU(tag, data, len); + + return 0; } |
