fix warning

This commit is contained in:
merlokk 2021-05-29 22:53:31 +03:00
commit 99c4a3a9c0

View file

@ -133,7 +133,7 @@ bool CIPURSEChannelAuthenticate(uint8_t keyIndex, uint8_t *key, bool verbose) {
if (sw == 0x6988) { if (sw == 0x6988) {
if (verbose) if (verbose)
PrintAndLogEx(ERR, "Cipurse authentication " _RED_("error") ". Wrong key."); PrintAndLogEx(ERR, "Cipurse authentication " _RED_("error") ". Wrong key.");
} else if ((sw == 0x6A88)) { } else if (sw == 0x6A88) {
if (verbose) if (verbose)
PrintAndLogEx(ERR, "Cipurse authentication " _RED_("error") ". Wrong key number."); PrintAndLogEx(ERR, "Cipurse authentication " _RED_("error") ". Wrong key number.");
} else { } else {