fixes
authorRonny Strutz <ronny.strutz@multimedia-labs.de>
Wed, 23 Nov 2005 02:21:55 +0000 (02:21 +0000)
committerRonny Strutz <ronny.strutz@multimedia-labs.de>
Wed, 23 Nov 2005 02:21:55 +0000 (02:21 +0000)
lib/dvb_ci/dvbci_mmi.cpp

index 90d2f9f50acc83f5e73f76ed4d3abe1b5ab965e9..9032f2df71fa8a17886ab5847e9f2c8783e8519f 100644 (file)
@@ -167,6 +167,8 @@ int eDVBCIMMISession::stopMMI()
        unsigned char tag[]={0x9f, 0x88, 0x00};
        unsigned char data[]={0x00};
        sendAPDU(tag, data, 1);
+       
+       return 0;
 }
 
 int eDVBCIMMISession::answerText(int answer)
@@ -177,6 +179,8 @@ int eDVBCIMMISession::answerText(int answer)
        unsigned char data[]={0x00};
        data[0] = answer & 0xff;
        sendAPDU(tag, data, 1);
+       
+       return 0;
 }
 
 int eDVBCIMMISession::cancelEnq()
@@ -186,5 +190,7 @@ int eDVBCIMMISession::cancelEnq()
        unsigned char tag[]={0x9f, 0x88, 0x08};
        unsigned char data[]={0x00};
        sendAPDU(tag, data, 1);
+       
+       return 0;
 }