mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-14 17:22:59 -07:00
Minor fixes
* fix compiler warnings on Ubuntu * cmdhf14a.c: make manufactureMapping static * cmdhf14a.c: fix format strings
This commit is contained in:
parent
91e03840f4
commit
b838c4ff27
6 changed files with 17 additions and 17 deletions
|
@ -620,7 +620,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 %d of %s\n", x, x, source - start, start);
|
||||
printf("Discovered unknown character %c %d at idx %d of %s\n", x, x, (unsigned int)(source - start), start);
|
||||
return 0;
|
||||
}
|
||||
// output
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue