From: Stefan Pluecken Date: Tue, 10 Jan 2006 15:14:06 +0000 (+0000) Subject: return of void function should not return a value X-Git-Tag: 2.6.0~4488 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/f1515e774761f54062c718ef23361800df65accb?ds=inline return of void function should not return a value --- diff --git a/lib/dvb_ci/dvbci_ui.cpp b/lib/dvb_ci/dvbci_ui.cpp index 185aac1c..0716f6c8 100644 --- a/lib/dvb_ci/dvbci_ui.cpp +++ b/lib/dvb_ci/dvbci_ui.cpp @@ -63,7 +63,7 @@ void eDVBCI_UI::setAppName(int slot, const char *name) void eDVBCI_UI::setReset(int slot) { eDVBCIInterfaces::getInstance()->reset(slot); - return 0; + return; } int eDVBCI_UI::startMMI(int slot)