From: Ralf S. Engelschall Date: Tue, 22 Dec 1998 16:20:18 +0000 (+0000) Subject: Fix unused variable warning of GCC X-Git-Tag: OpenSSL_0_9_1c~7 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=f92e687e179260916be2a7c9679aef8b9b7d21e4;hp=305f402e7566f69b536d548de77b80127b9b951d Fix unused variable warning of GCC --- 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)