aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/asn1/t_x509.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2012-01-15 13:30:41 +0000
committerDr. Stephen Henson <steve@openssl.org>2012-01-15 13:30:41 +0000
commit9bd20155badd62e19d578187b931c861d8759b16 (patch)
tree9627491ab3cf0b402c69dda81c84ac128f59f59c /crypto/asn1/t_x509.c
parent5d13669a2c3203ae7fa19192a992e8683ed46d8d (diff)
downloadopenssl-9bd20155badd62e19d578187b931c861d8759b16.tar.gz
fix warning
Diffstat (limited to 'crypto/asn1/t_x509.c')
-rw-r--r--crypto/asn1/t_x509.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/t_x509.c b/crypto/asn1/t_x509.c
index 4f5d28f1ab..edbb39a02f 100644
--- a/crypto/asn1/t_x509.c
+++ b/crypto/asn1/t_x509.c
@@ -138,7 +138,7 @@ int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflags, unsigned long cflag)
if (BIO_write(bp," Serial Number:",22) <= 0) goto err;
bs=X509_get_serialNumber(x);
- if (bs->length <= sizeof(long))
+ if (bs->length <= (int)sizeof(long))
{
l=ASN1_INTEGER_get(bs);
if (bs->type == V_ASN1_NEG_INTEGER)