more crc overshadow

This commit is contained in:
iceman1001 2019-04-07 12:10:04 +02:00
commit a8ad793f7f
2 changed files with 2 additions and 2 deletions

View file

@ -479,7 +479,7 @@ int CmdHF15Demod(const char *Cmd) {
for (i = 0; i < k; i++)
PrintAndLogEx(NORMAL, "# %2d: %02x ", i, outBuf[i]);
PrintAndLogEx(NORMAL, "CRC %04x", Crc(outBuf, k - 2));
PrintAndLogEx(NORMAL, "CRC %04x", Crc15(outBuf, k - 2));
return 0;
}