summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2006-07-04 20:29:14 +0000
committerAndy Polyakov <appro@openssl.org>2006-07-04 20:29:14 +0000
commit1a4e245f3ebcaef6b02b73de5305d1f2c04fbeeb (patch)
treef7d518d20741804b599e078705e030ebb6b0fb26 /crypto
parent975efcbaee68de952437d255267ea456c3f27d37 (diff)
downloadopenssl-new-1a4e245f3ebcaef6b02b73de5305d1f2c04fbeeb.tar.gz
Unsigned vs signed comparison warning.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bn/bn_gf2m.c3
1 files changed, 1 insertions, 2 deletions
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_);