From: Rich Salz Date: Wed, 28 Jan 2015 20:41:14 +0000 (-0500) Subject: Fix int/unsigned compiler complaint X-Git-Tag: OpenSSL_1_1_0-pre1~1743 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=537bf4381b0db3436e8ef8daff65e39e8593eecf;p=openssl Fix int/unsigned compiler complaint Reviewed-by: Matt Caswell --- diff --git a/crypto/x509v3/v3_addr.c b/crypto/x509v3/v3_addr.c index 1635421c5f..fecf76514c 100644 --- a/crypto/x509v3/v3_addr.c +++ b/crypto/x509v3/v3_addr.c @@ -527,7 +527,7 @@ static IPAddressFamily *make_IPAddressFamily(IPAddrBlocks *addr, { IPAddressFamily *f; unsigned char key[3]; - unsigned keylen; + int keylen; int i; key[0] = (afi >> 8) & 0xFF;