fix coverity CID 317112,CID 317111

This commit is contained in:
iceman1001 2021-04-05 08:14:59 +02:00
parent 7d83f5de82
commit e3765a7ec0

View file

@ -339,9 +339,10 @@ static int CmdLFHitagEload(const char *Cmd) {
clearCommandBuffer();
SendCommandNG(CMD_LF_HITAG_ELOAD, (uint8_t *)&payload, 2 + dumplen);
} else {
PrintAndLogEx(ERR, "error, wrong dump file size. got %u", dumplen);
PrintAndLogEx(ERR, "error, wrong dump file size. got %zu", dumplen);
}
free(dump);
return PM3_SUCCESS;
}