diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2002-10-06 14:14:55 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2002-10-06 14:14:55 +0200 |
commit | 74e3931f8438df5bcb980334e1fe4ed19f13c8ef (patch) | |
tree | ddb9e4ec0ab74fcce2d28eaf625a1b80c8687798 /crypto/asn1/t_pkey.c | |
parent | Oops, remove old comment out debugging printf... (diff) | |
download | openssl-74e3931f8438df5bcb980334e1fe4ed19f13c8ef.tar.xz openssl-74e3931f8438df5bcb980334e1fe4ed19f13c8ef.zip |
Various Win32 fixes.
Resolve signed/unsigned conflicts
Make dso_win32.c compile.
Diffstat (limited to 'crypto/asn1/t_pkey.c')
-rw-r--r-- | crypto/asn1/t_pkey.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/t_pkey.c b/crypto/asn1/t_pkey.c index 0112f7cced..46fb86a3b9 100644 --- a/crypto/asn1/t_pkey.c +++ b/crypto/asn1/t_pkey.c @@ -627,7 +627,7 @@ static int print(BIO *bp, const char *number, BIGNUM *num, unsigned char *buf, static int print_bin(BIO *fp, const char *name, const unsigned char *buf, size_t len, int off) { - int i; + size_t i; char str[128]; if (buf == NULL) |