mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
chg: skip pointers and make a small number instead.
This commit is contained in:
parent
0582fdf934
commit
4671b81115
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 % " PRIu32 " of %s\n", x, x, source - start, start);
|
||||
printf("Discovered unknown character %c %d at idx %d of %s\n", x, x, (int16_t)(source - start), start);
|
||||
return 0;
|
||||
}
|
||||
// output
|
||||
|
|
Loading…
Reference in a new issue