run `make format`

This commit is contained in:
Steffen Jaeckel 2019-01-22 09:03:27 +01:00
parent fcea5e3c35
commit 32622afe2f
1 changed files with 1 additions and 2 deletions

View File

@ -307,8 +307,7 @@ int mp_prime_is_prime(const mp_int *a, int t, int *result)
#endif
if (fips_rand > ((unsigned int) INT_MAX - DIGIT_BIT)) {
len = INT_MAX / DIGIT_BIT;
}
else {
} else {
len = (((int)fips_rand + DIGIT_BIT) / DIGIT_BIT);
}
/* Unlikely. */