From 2047bda6fb8bedab1103b7bd5df5ea55eb7ccc9b Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 27 Nov 2002 13:40:41 +0000 Subject: [PATCH] Unused variable removed. --- crypto/bn/bn_gf2m.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.25.1