redundant

This commit is contained in:
iceman1001 2020-05-12 10:27:54 +02:00
commit 8f188a5329
3 changed files with 3 additions and 3 deletions

View file

@ -436,7 +436,7 @@ void LegicRfInfo(void) {
// read MCC and check against UID
int16_t mcc = read_byte(4, card.cmdsize);
int16_t calc_mcc = CRC8Legic(card.uid, 4);;
int16_t calc_mcc = CRC8Legic(card.uid, 4);
if (mcc != calc_mcc) {
reply_mix(CMD_ACK, 0, 0, 0, 0, 0);
goto OUT;