mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
FIX: this should remove some warnings while compiling on linux and when running Travis-CI in a docker container.
some format specifier for uint64_t and getting the git history in the perl script.
This commit is contained in:
parent
c2d2a5a6b5
commit
43d3f76921
4 changed files with 14 additions and 11 deletions
|
@ -58,7 +58,8 @@ int CmdEM410xRead(const char *Cmd)
|
|||
return 0;
|
||||
}
|
||||
char id[12] = {0x00};
|
||||
sprintf(id, "%010llx",lo);
|
||||
//sprintf(id, "%010llx",lo);
|
||||
sprintf(id, "%010" PRIu64 ", lo);
|
||||
|
||||
global_em410xId = id;
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue