From 163f5b236ca1161ad08d9820bebb25290720613c Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 21 May 2003 14:21:26 +0000 Subject: [PATCH] Correct signedness --- crypto/ec/ec2_mult.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- 2.40.0