Commit 32622afe2f638a82d0de62f57bafe90e57769797

Steffen Jaeckel 2019-01-22T09:03:27

run `make format`

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/bn_mp_prime_is_prime.c b/bn_mp_prime_is_prime.c
index 8d96e6a..b5b8987 100644
--- a/bn_mp_prime_is_prime.c
+++ b/bn_mp_prime_is_prime.c
@@ -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. */