aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf S. Engelschall <rse@openssl.org>1998-12-22 16:20:18 +0000
committerRalf S. Engelschall <rse@openssl.org>1998-12-22 16:20:18 +0000
commitf92e687e179260916be2a7c9679aef8b9b7d21e4 (patch)
treeb6dd4ab822c5c7dcacc6e2fdcee600bfc51638c0
parent305f402e7566f69b536d548de77b80127b9b951d (diff)
downloadopenssl-f92e687e179260916be2a7c9679aef8b9b7d21e4.tar.gz
Fix unused variable warning of GCC
-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)