mirror of
https://github.com/openssl/openssl.git
synced 2025-01-12 13:36:28 +08:00
Fix unused variable warning of GCC
This commit is contained in:
parent
305f402e75
commit
f92e687e17
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user