1
0
forked from fsfw/fsfw

last coverity fixes

This commit is contained in:
2021-04-11 18:36:24 +02:00
parent 7b8928ef47
commit 6e6fb62b3c
6 changed files with 7 additions and 7 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() {