gcc figures that the format specifier %2x means unsigned int, so let's
authorRichard Levitte <levitte@openssl.org>
Wed, 20 Feb 2002 13:50:36 +0000 (13:50 +0000)
committerRichard Levitte <levitte@openssl.org>
Wed, 20 Feb 2002 13:50:36 +0000 (13:50 +0000)
make n unsigned.

crypto/evp/evp_test.c

index bf0fc3692be8f07a41e9e8b95e46806ca2e6497f..3607fe777677020f4663d5bb788a2b00e2885e17 100644 (file)
@@ -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])
            {