Fix wrong log message value

This commit is contained in:
Adam Hořčica
2022-02-04 00:00:23 +01:00
committed by GitHub
parent bdc5941ee0
commit 63382c0bff
+1 -1
View File
@@ -838,7 +838,7 @@ int ExchangeRAW14a(uint8_t *datain, int datainlen, bool activateField, bool leav
}
if (recv[0] != data[0]) {
if (!silentMode) PrintAndLogEx(ERR, "iso14443-4 framing error. Card send %2x must be %2x", dataout[0], data[0]);
if (!silentMode) PrintAndLogEx(ERR, "iso14443-4 framing error. Card send %2x must be %2x", recv[0], data[0]);
return 2;
}