Skip to content

Commit

Permalink
run make format
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaeckel committed Jan 22, 2019
1 parent fcea5e3 commit 32622af
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bn_mp_prime_is_prime.c
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit 32622af

Please sign in to comment.