From 1a4e245f3ebcaef6b02b73de5305d1f2c04fbeeb Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Tue, 4 Jul 2006 20:29:14 +0000 Subject: Unsigned vs signed comparison warning. --- crypto/bn/bn_gf2m.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'crypto/bn/bn_gf2m.c') diff --git a/crypto/bn/bn_gf2m.c b/crypto/bn/bn_gf2m.c index e962e4f799..be409e1187 100644 --- a/crypto/bn/bn_gf2m.c +++ b/crypto/bn/bn_gf2m.c @@ -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_); -- cgit v1.2.3