Commit 236be532 authored by Richard Levitte's avatar Richard Levitte
Browse files

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

make n unsigned.
parent 1fc1bd38
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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])
	    {