mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-22 14:13:42 -07:00
Avoid a warning in client/util.c
This commit is contained in:
parent
e0b2de0cce
commit
9707ba5567
1 changed files with 1 additions and 1 deletions
|
@ -620,7 +620,7 @@ int hextobinarray(char *target, char *source)
|
||||||
else if (x >= 'A' && x <= 'F')
|
else if (x >= 'A' && x <= 'F')
|
||||||
x -= 'A' - 10;
|
x -= 'A' - 10;
|
||||||
else {
|
else {
|
||||||
printf("Discovered unknown character %c %d at idx %d of %s\n", x, x, source - start, start);
|
printf("Discovered unknown character %c %d at idx %tu of %s\n", x, x, source - start, start);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
// output
|
// output
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue