summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2003-09-29 17:19:24 +0000
committerDr. Stephen Henson <steve@openssl.org>2003-09-29 17:19:24 +0000
commit093879e8beb8860e7f93f0a85a902aba3670aa98 (patch)
tree3d74448e1ffd6b89391fb813c93700157e1cea7c
parent0f4d26078287c09c4387678f7b4a9cd22d4df1d1 (diff)
downloadopenssl-new-093879e8beb8860e7f93f0a85a902aba3670aa98.tar.gz
Fix warning on Win32.
-rw-r--r--crypto/bn/bn_mul.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_mul.c b/crypto/bn/bn_mul.c
index f8a5ba7c75..78f98b1b02 100644
--- a/crypto/bn/bn_mul.c
+++ b/crypto/bn/bn_mul.c
@@ -376,7 +376,7 @@ void bn_mul_part_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int tn,
/* The overflow will stop before we over write
* words we should not overwrite */
- if (ln < c1)
+ if (ln < (BN_ULONG)c1)
{
do {
p++;