summaryrefslogtreecommitdiffstats
path: root/crypto/dh/dh_ameth.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2006-04-17 12:08:22 +0000
committerDr. Stephen Henson <steve@openssl.org>2006-04-17 12:08:22 +0000
commitc20276e4aef1e716980589c43cf9276abc7ff2b7 (patch)
treedc4f04b4ea1176b86ab6229cd4338b334ad6496d /crypto/dh/dh_ameth.c
parent9ca7047d7141f58b4a4c9e1cdfc0d49301358095 (diff)
Fix (most) WIN32 warnings and errors.
Diffstat (limited to 'crypto/dh/dh_ameth.c')
-rw-r--r--crypto/dh/dh_ameth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/dh/dh_ameth.c b/crypto/dh/dh_ameth.c
index 7a83768e2c..2f2589bc25 100644
--- a/crypto/dh/dh_ameth.c
+++ b/crypto/dh/dh_ameth.c
@@ -287,7 +287,7 @@ err:
static void update_buflen(const BIGNUM *b, size_t *pbuflen)
{
- int i;
+ size_t i;
if (!b)
return;
if (*pbuflen < (i = (size_t)BN_num_bytes(b)))