mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
FIX: wrong format specifier syntax
This commit is contained in:
parent
621601ecef
commit
28093ebc10
2 changed files with 4 additions and 3 deletions
|
@ -59,7 +59,7 @@ int CmdEM410xRead(const char *Cmd)
|
|||
}
|
||||
char id[12] = {0x00};
|
||||
//sprintf(id, "%010llx",lo);
|
||||
sprintf(id, "%010" PRIu64 ", lo);
|
||||
sprintf(id, "%010"PRIu64, lo);
|
||||
|
||||
global_em410xId = id;
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue