fix a warning

CHG: size_t is unsigned. switched to the correct string formatter
This commit is contained in:
Iceman 2016-12-26 20:39:13 +01:00 committed by GitHub
parent 6fe5fe8d52
commit ef31a8b453

View file

@ -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: %d\n", gotBytes);
printf("Num of bytes: %u\n", gotBytes);
// print the dump
printf("------+--+-------------------------+\n");