aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_nist.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/bn/bn_nist.c')
-rw-r--r--crypto/bn/bn_nist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_nist.c b/crypto/bn/bn_nist.c
index 53598f97ef..fcc2b77f45 100644
--- a/crypto/bn/bn_nist.c
+++ b/crypto/bn/bn_nist.c
@@ -254,7 +254,7 @@ static void nist_cp_bn_0(BN_ULONG *dst, const BN_ULONG *src, int top, int max)
int i;
#ifdef BN_DEBUG
- OPENSSL_assert(top <= max);
+ assert(top <= max);
#endif
for (i = 0; i < top; i++)
dst[i] = src[i];