mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
fixed warning about size_t
CHG: warning needs %lu string formatter
This commit is contained in:
parent
ef31a8b453
commit
1772cf8bdd
1 changed files with 1 additions and 1 deletions
|
@ -769,7 +769,7 @@ int CmdHFiClassReader_Dump(const char *Cmd) {
|
|||
if (have_debit_key) memcpy(tag_data+(3*8),div_key,8);
|
||||
if (have_credit_key) memcpy(tag_data+(4*8),c_div_key,8);
|
||||
|
||||
printf("Num of bytes: %u\n", gotBytes);
|
||||
printf("Num of bytes: %lu\n", gotBytes);
|
||||
|
||||
// print the dump
|
||||
printf("------+--+-------------------------+\n");
|
||||
|
|
Loading…
Reference in a new issue