From: Lars Op den Kamp Date: Thu, 22 Dec 2011 00:08:50 +0000 (+0100) Subject: cec: forgot the return value in HanldeFeatureAbort() X-Git-Tag: upstream/2.2.0~1^2~43^2~20 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=7de6ad36df678390b4cfa958b6d562e7e70c8a14;p=deb_libcec.git cec: forgot the return value in HanldeFeatureAbort() --- diff --git a/src/lib/implementations/CECCommandHandler.cpp b/src/lib/implementations/CECCommandHandler.cpp index ef8a8f2..23fd550 100644 --- a/src/lib/implementations/CECCommandHandler.cpp +++ b/src/lib/implementations/CECCommandHandler.cpp @@ -231,6 +231,7 @@ bool CCECCommandHandler::HandleFeatureAbort(const cec_command &command) { m_processor->m_busDevices[command.initiator]->SetUnsupportedFeature((cec_opcode)command.parameters[0]); } + return true; } bool CCECCommandHandler::HandleGetCecVersion(const cec_command &command)