Merge pull request 'small coverity tweak for Health Device' (#409) from mueller/health-coverity-fix into development

Reviewed-on: #409
This commit is contained in:
Steffen Gaisser 2021-04-20 16:38:37 +02:00
commit 9e1f3ee585
1 changed files with 2 additions and 2 deletions

View File

@ -16,9 +16,9 @@ ReturnValue_t HealthDevice::performOperation(uint8_t opCode) {
CommandMessage command;
ReturnValue_t result = commandQueue->receiveMessage(&command);
if (result == HasReturnvaluesIF::RETURN_OK) {
healthHelper.handleHealthCommand(&command);
result = healthHelper.handleHealthCommand(&command);
}
return HasReturnvaluesIF::RETURN_OK;
return result;
}
ReturnValue_t HealthDevice::initialize() {