summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_mul.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-05-21 14:29:13 +0000
committerRichard Levitte <levitte@openssl.org>2003-05-21 14:29:13 +0000
commit83743ad039abfd599595aad161054b072b8609bd (patch)
tree73d93d9d0ded83bd8413029c5e7340963b322be1 /crypto/bn/bn_mul.c
parent163f5b236ca1161ad08d9820bebb25290720613c (diff)
Fix sign bugs.
PR: 621
Diffstat (limited to 'crypto/bn/bn_mul.c')
-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 bfd7f680c9..4c413b3a52 100644
--- a/crypto/bn/bn_mul.c
+++ b/crypto/bn/bn_mul.c
@@ -549,7 +549,7 @@ void bn_mul_part_recursive(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n,
int tna, int tnb, BN_ULONG *t)
{
int i,j,n2=n*2;
- unsigned int c1,c2,neg,zero;
+ int c1,c2,neg,zero;
BN_ULONG ln,lo,*p;
# ifdef BN_COUNT