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
1 changed files with 1 additions and 1 deletions
|
@ -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])
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue