fix msvc warnings

This commit is contained in:
Leon 2019-06-14 15:04:30 +02:00
parent bf0aca644e
commit e353081cc2
3 changed files with 3 additions and 3 deletions

View File

@ -106,7 +106,7 @@ uint8_t PQCLEAN_LEDAKEMLT12_CLEAN_DFR_test(POSITION_T LSparse[N0][DV * M]) {
allBlockMaxSumstMinusOne; allBlockMaxSumstMinusOne;
} }
if (DV * M > (allBlockMaxSumstMinusOne + allBlockMaxSumst)) { if (DV * M > (allBlockMaxSumstMinusOne + allBlockMaxSumst)) {
return allBlockMaxSumst + 1; return (uint8_t) allBlockMaxSumst + 1;
} }
return DFR_TEST_FAIL; return DFR_TEST_FAIL;
} }

View File

@ -106,7 +106,7 @@ uint8_t PQCLEAN_LEDAKEMLT32_CLEAN_DFR_test(POSITION_T LSparse[N0][DV * M]) {
allBlockMaxSumstMinusOne; allBlockMaxSumstMinusOne;
} }
if (DV * M > (allBlockMaxSumstMinusOne + allBlockMaxSumst)) { if (DV * M > (allBlockMaxSumstMinusOne + allBlockMaxSumst)) {
return allBlockMaxSumst + 1; return (uint8_t) allBlockMaxSumst + 1;
} }
return DFR_TEST_FAIL; return DFR_TEST_FAIL;
} }

View File

@ -106,7 +106,7 @@ uint8_t PQCLEAN_LEDAKEMLT52_CLEAN_DFR_test(POSITION_T LSparse[N0][DV * M]) {
allBlockMaxSumstMinusOne; allBlockMaxSumstMinusOne;
} }
if (DV * M > (allBlockMaxSumstMinusOne + allBlockMaxSumst)) { if (DV * M > (allBlockMaxSumstMinusOne + allBlockMaxSumst)) {
return allBlockMaxSumst + 1; return (uint8_t) allBlockMaxSumst + 1;
} }
return DFR_TEST_FAIL; return DFR_TEST_FAIL;
} }