From: Richard Levitte Date: Wed, 20 Feb 2002 13:50:36 +0000 (+0000) Subject: gcc figures that the format specifier %2x means unsigned int, so let's X-Git-Tag: OpenSSL_0_9_6d~20^2~146 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=236be53269d7231edde44e194ae40f732d00c620;ds=sidebyside gcc figures that the format specifier %2x means unsigned int, so let's make n unsigned. --- diff --git a/crypto/evp/evp_test.c b/crypto/evp/evp_test.c index bf0fc3692b..3607fe7776 100644 --- a/crypto/evp/evp_test.c +++ b/crypto/evp/evp_test.c @@ -73,7 +73,7 @@ static int convert(unsigned char *s) for(d=s ; *s ; s+=2,++d) { - int n; + unsigned int n; if(!s[1]) {