summaryrefslogtreecommitdiffstats
path: root/crypto/rsa/rsa_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/rsa/rsa_ameth.c
parent9ca7047d7141f58b4a4c9e1cdfc0d49301358095 (diff)
Fix (most) WIN32 warnings and errors.
Diffstat (limited to 'crypto/rsa/rsa_ameth.c')
-rw-r--r--crypto/rsa/rsa_ameth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rsa/rsa_ameth.c b/crypto/rsa/rsa_ameth.c
index a4658c262a..4acc11db33 100644
--- a/crypto/rsa/rsa_ameth.c
+++ b/crypto/rsa/rsa_ameth.c
@@ -169,7 +169,7 @@ static void int_rsa_free(EVP_PKEY *pkey)
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)))