summaryrefslogtreecommitdiffstats
path: root/crypto/evp/evp_test.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-02-20 13:50:36 +0000
committerRichard Levitte <levitte@openssl.org>2002-02-20 13:50:36 +0000
commit236be53269d7231edde44e194ae40f732d00c620 (patch)
treede581173b9b27aaa22641b87083888760a4f8410 /crypto/evp/evp_test.c
parent1fc1bd382bd08a140a0074ca41b2c9b74e6fab34 (diff)
gcc figures that the format specifier %2x means unsigned int, so let's
make n unsigned.
Diffstat (limited to 'crypto/evp/evp_test.c')
-rw-r--r--crypto/evp/evp_test.c2
1 files changed, 1 insertions, 1 deletions
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])
{