gcc figures that the format specifier %2x means unsigned int, so let's

make n unsigned.
This commit is contained in:
Richard Levitte 2002-02-20 13:50:36 +00:00
parent 1fc1bd382b
commit 236be53269

View 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])
{