Fix unused variable warning of GCC
This commit is contained in:
parent
305f402e75
commit
f92e687e17
1 changed files with 4 additions and 1 deletions
|
@ -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 a new issue