From 4b650cb7314744ea9a89be3512d608b5ae899e4b Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Mon, 29 Sep 2003 17:17:54 +0000 Subject: [PATCH] Fix warning on Win32. --- crypto/bn/bn_mul.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++; -- 2.25.1