summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_gf2m.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-11-27 13:40:41 +0000
committerRichard Levitte <levitte@openssl.org>2002-11-27 13:40:41 +0000
commit2047bda6fb8bedab1103b7bd5df5ea55eb7ccc9b (patch)
tree71bb463089775e4a683bee35c471f4444fbad806 /crypto/bn/bn_gf2m.c
parent406c6f6962529e71076f7270c231bdc9cae8070b (diff)
Unused variable removed.
Diffstat (limited to 'crypto/bn/bn_gf2m.c')
-rw-r--r--crypto/bn/bn_gf2m.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_gf2m.c b/crypto/bn/bn_gf2m.c
index 826a0497e8..6edd8ab22b 100644
--- a/crypto/bn/bn_gf2m.c
+++ b/crypto/bn/bn_gf2m.c
@@ -853,7 +853,7 @@ int BN_GF2m_mod_sqrt(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
*/
int BN_GF2m_mod_solve_quad_arr(BIGNUM *r, const BIGNUM *a_, const unsigned int p[], BN_CTX *ctx)
{
- int ret = 0, i, count = 0;
+ int ret = 0, count = 0;
unsigned int j;
BIGNUM *a, *z, *rho, *w, *w2, *tmp;