Make sure to compare unsigned against unsigned.

This commit is contained in:
Richard Levitte 2003-05-28 10:34:29 +00:00
parent edd55d08f5
commit f5f7dffdd1

View File

@ -706,7 +706,7 @@ void bn_mul_part_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n,
/* The overflow will stop before we over write
* words we should not overwrite */
if (ln < c1)
if (ln < (BN_ULONG)c1)
{
do {
p++;