Commit f92e687e authored by Ralf S. Engelschall's avatar Ralf S. Engelschall
Browse files

Fix unused variable warning of GCC

parent 305f402e
Loading
Loading
Loading
Loading
+4 −1
Original line number Original line Diff line number Diff line
@@ -175,7 +175,10 @@ BIGNUM *r;
BIGNUM *a;
BIGNUM *a;
BIGNUM *b;
BIGNUM *b;
	{
	{
	int max,min,ret=1;
	int max,min;
#if 0
	int ret=1;
#endif
	register BN_ULONG t1,t2,*ap,*bp,*rp;
	register BN_ULONG t1,t2,*ap,*bp,*rp;
	int i,carry;
	int i,carry;
#if defined(IRIX_CC_BUG) && !defined(LINT)
#if defined(IRIX_CC_BUG) && !defined(LINT)