From: Richard Levitte Date: Wed, 21 May 2003 14:21:26 +0000 (+0000) Subject: Correct signedness X-Git-Tag: BEN_FIPS_TEST_1~38^2~95 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=163f5b236ca1161ad08d9820bebb25290720613c;p=oweals%2Fopenssl.git Correct signedness --- diff --git a/crypto/ec/ec2_mult.c b/crypto/ec/ec2_mult.c index a0effa95ad..a0ee7c152f 100644 --- a/crypto/ec/ec2_mult.c +++ b/crypto/ec/ec2_mult.c @@ -315,7 +315,8 @@ int ec_GF2m_simple_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) { BN_CTX *new_ctx = NULL; - int ret = 0, i; + int ret = 0; + size_t i; EC_POINT *p=NULL; if (ctx == NULL)