mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-16 02:03:00 -07:00
remove redundant llx prix64 defines
remove unused commented out #includes coverity indicates compressed_fpga_stream.opaque needs to be initialized to Z_NULL fgetc returns int define llu
This commit is contained in:
parent
d23411ef61
commit
38d618baa9
6 changed files with 10 additions and 14 deletions
|
@ -21,8 +21,6 @@
|
|||
#include "cmdlfem4x.h"
|
||||
#include "lfdemod.h"
|
||||
|
||||
#define llx PRIx64
|
||||
|
||||
char *global_em410xId;
|
||||
|
||||
static int CmdHelp(const char *Cmd);
|
||||
|
@ -58,7 +56,7 @@ int CmdEM410xRead(const char *Cmd)
|
|||
return 0;
|
||||
}
|
||||
char id[12] = {0x00};
|
||||
sprintf(id, "%010llx",lo);
|
||||
sprintf(id, "%010"PRIx64,lo);
|
||||
|
||||
global_em410xId = id;
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue