From: Dr. Stephen Henson Date: Mon, 29 Sep 2003 17:17:54 +0000 (+0000) Subject: Fix warning on Win32. X-Git-Tag: OpenSSL_0_9_6k~2 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4b650cb7314744ea9a89be3512d608b5ae899e4b;p=oweals%2Fopenssl.git Fix warning on Win32. --- 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++;