fix to remove compiler warning
fsfw/fsfw/pipeline/pr-development This commit looks good Details

This commit is contained in:
Jakob Meier 2022-02-03 11:07:51 +01:00
parent 348274c145
commit f08d291e3e
1 changed files with 5 additions and 1 deletions

View File

@ -67,7 +67,11 @@ ReturnValue_t UioMapper::getMapSize(size_t* size) {
#endif
return HasReturnvaluesIF::RETURN_FAILED;
}
items = sscanf(hexstring, "%lx", size);
uint32_t sizeTmp = 0;
items = sscanf(hexstring, "%x", &sizeTmp);
if(size != nullptr) {
*size = sizeTmp;
}
if (items != 1) {
#if FSFW_CPP_OSTREAM_ENABLED == 1
sif::warning << "UioMapper::getMapSize: Failed with error code " << errno << "to convert "