From 236be53269d7231edde44e194ae40f732d00c620 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 20 Feb 2002 13:50:36 +0000 Subject: [PATCH] gcc figures that the format specifier %2x means unsigned int, so let's make n unsigned. --- crypto/evp/evp_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]) { -- GitLab