Unsigned vs signed comparison warning.
authorAndy Polyakov <appro@openssl.org>
Tue, 4 Jul 2006 20:29:14 +0000 (20:29 +0000)
committerAndy Polyakov <appro@openssl.org>
Tue, 4 Jul 2006 20:29:14 +0000 (20:29 +0000)
crypto/bn/bn_gf2m.c

index e962e4f799c5c5081027405b5574bf4b7d10a4e8..be409e1187946efe7264e7ac9702e36383642b49 100644 (file)
@@ -855,8 +855,7 @@ err:
  */
 int BN_GF2m_mod_solve_quad_arr(BIGNUM *r, const BIGNUM *a_, const int p[], BN_CTX *ctx)
        {
-       int ret = 0, count = 0;
-       unsigned int j;
+       int ret = 0, count = 0, j;
        BIGNUM *a, *z, *rho, *w, *w2, *tmp;
 
        bn_check_top(a_);