mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-27 19:07:30 +08:00
chg: pointer should be unsigned
This commit is contained in:
parent
d3db40b7dd
commit
0582fdf934
1 changed files with 1 additions and 1 deletions
|
@ -622,7 +622,7 @@ int hextobinarray(char *target, char *source)
|
|||
else if (x >= 'A' && x <= 'F')
|
||||
x -= 'A' - 10;
|
||||
else {
|
||||
printf("Discovered unknown character %c %d at idx % " PRId32 " of %s\n", x, x, source - start, start);
|
||||
printf("Discovered unknown character %c %d at idx % " PRIu32 " of %s\n", x, x, source - start, start);
|
||||
return 0;
|
||||
}
|
||||
// output
|
||||
|
|
Loading…
Reference in a new issue