summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_prime.c
diff options
context:
space:
mode:
authorViktor Dukhovni <openssl-users@dukhovni.org>2016-01-28 00:10:11 -0500
committerViktor Dukhovni <openssl-users@dukhovni.org>2016-01-28 06:36:55 -0500
commit7eba4e62077484aebec010157424287f1963c88f (patch)
tree5583d5933d0084b49ffd896414ee884e6320ef41 /crypto/bn/bn_prime.c
parent3538c7da3d53dca70be5f507376299843046d2b7 (diff)
Restore NUMPRIMES as a numeric literal
This fixes clang compilation problem with size_t NUMPRIMES and int loop counters. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/bn/bn_prime.c')
-rw-r--r--crypto/bn/bn_prime.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/crypto/bn/bn_prime.c b/crypto/bn/bn_prime.c
index 8d1294fcfc..a5887d96a8 100644
--- a/crypto/bn/bn_prime.c
+++ b/crypto/bn/bn_prime.c
@@ -121,8 +121,6 @@
*/
#include "bn_prime.h"
-#define NUMPRIMES OSSL_NELEM(primes)
-
static int witness(BIGNUM *w, const BIGNUM *a, const BIGNUM *a1,
const BIGNUM *a1_odd, int k, BN_CTX *ctx,
BN_MONT_CTX *mont);