aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crypto/bn/bn_add.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/crypto/bn/bn_add.c b/crypto/bn/bn_add.c
index 27b781a367..12797225b8 100644
--- a/crypto/bn/bn_add.c
+++ b/crypto/bn/bn_add.c
@@ -175,7 +175,10 @@ BIGNUM *r;
BIGNUM *a;
BIGNUM *b;
{
- int max,min,ret=1;
+ int max,min;
+#if 0
+ int ret=1;
+#endif
register BN_ULONG t1,t2,*ap,*bp,*rp;
int i,carry;
#if defined(IRIX_CC_BUG) && !defined(LINT)