gcc figures that the format specifier %2x means unsigned int, so let's
make n unsigned.
This commit is contained in:
parent
1fc1bd382b
commit
236be53269
@ -73,7 +73,7 @@ static int convert(unsigned char *s)
|
|||||||
|
|
||||||
for(d=s ; *s ; s+=2,++d)
|
for(d=s ; *s ; s+=2,++d)
|
||||||
{
|
{
|
||||||
int n;
|
unsigned int n;
|
||||||
|
|
||||||
if(!s[1])
|
if(!s[1])
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user