summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_asm.c
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2000-02-27 16:56:48 +0000
committerBen Laurie <ben@openssl.org>2000-02-27 16:56:48 +0000
commit707ef52e21e07cd1ea7a370cf568da222bcb07cf (patch)
tree2d5eb38187f0f10537fec5b884106bd89acd49c7 /crypto/bn/bn_asm.c
parente485afdab5ee4fb6ae0724c53b188786b9fd7d72 (diff)
Typo.
Diffstat (limited to 'crypto/bn/bn_asm.c')
-rw-r--r--crypto/bn/bn_asm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_asm.c b/crypto/bn/bn_asm.c
index d9c082f3ea..3329cc18e6 100644
--- a/crypto/bn/bn_asm.c
+++ b/crypto/bn/bn_asm.c
@@ -195,7 +195,7 @@ BN_ULONG bn_mul_words(BN_ULONG *rp, BN_ULONG *ap, int num, BN_ULONG w)
void bn_sqr_words(BN_ULONG *r, BN_ULONG *a, int n)
{
- assert(num >= 0);
+ assert(n >= 0);
if (n <= 0) return;
for (;;)
{