From: Richard Levitte Date: Wed, 27 Nov 2002 13:40:41 +0000 (+0000) Subject: Unused variable removed. X-Git-Tag: OpenSSL_0_9_7-beta5~32^2~6 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=2047bda6fb8bedab1103b7bd5df5ea55eb7ccc9b Unused variable removed. --- 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;