mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
Remove long unsigned int warning
This commit is contained in:
parent
11e5131604
commit
ac18114909
1 changed files with 1 additions and 1 deletions
|
@ -2606,7 +2606,7 @@ static int CmdT55xxSetDeviceConfig(const char *Cmd) {
|
|||
|
||||
// printf ("DLmode %d\n",downlink_mode);
|
||||
t55xx_config conf = {0};
|
||||
printf ("Size conf %lld\n",sizeof(conf));
|
||||
printf ("Size conf %zu\n",sizeof(conf));
|
||||
if (erase) {
|
||||
memset (&conf,0xff, sizeof(conf));
|
||||
printf ("Conf.m[0] %x\n",conf.m[0].start_gap);
|
||||
|
|
Loading…
Reference in a new issue