Fix SPI ComIF shadowing warning #639

Merged
muellerr merged 4 commits from KSat/fsfw:mueller/spi-com-if-shadowing into development 2022-06-13 14:35:47 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ ReturnValue_t SpiComIF::performRegularSendOperation(SpiCookie* spiCookie, const
#endif
return result;
}
ReturnValue_t result = gpioComIF->pullLow(gpioId);
result = gpioComIF->pullLow(gpioId);
if (result != HasReturnvaluesIF::RETURN_OK) {
#if FSFW_VERBOSE_LEVEL >= 1
#if FSFW_CPP_OSTREAM_ENABLED == 1