Skip to content

Commit

Permalink
Fix unused variable warning of GCC
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralf S. Engelschall committed Dec 22, 1998
1 parent 305f402 commit f92e687
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crypto/bn/bn_add.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit f92e687

Please sign in to comment.