aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ec
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-05-21 14:21:26 +0000
committerRichard Levitte <levitte@openssl.org>2003-05-21 14:21:26 +0000
commit163f5b236ca1161ad08d9820bebb25290720613c (patch)
tree4cfcc5c9a4c16216a1a87af41f6251faba2a8471 /crypto/ec
parent513c01a591d2c55e61006c1e8f26c16e9dc55307 (diff)
downloadopenssl-163f5b236ca1161ad08d9820bebb25290720613c.tar.gz
Correct signedness
Diffstat (limited to 'crypto/ec')
-rw-r--r--crypto/ec/ec2_mult.c3
1 files changed, 2 insertions, 1 deletions
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)