From 99c4a3a9c0b0d5c8993f438f09d8b0a1ed8e66dc Mon Sep 17 00:00:00 2001 From: merlokk <807634+merlokk@users.noreply.github.com> Date: Sat, 29 May 2021 22:53:31 +0300 Subject: [PATCH] fix warning --- client/src/cipurse/cipursecore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cipurse/cipursecore.c b/client/src/cipurse/cipursecore.c index 3b905214f..4f73d73c7 100644 --- a/client/src/cipurse/cipursecore.c +++ b/client/src/cipurse/cipursecore.c @@ -133,7 +133,7 @@ bool CIPURSEChannelAuthenticate(uint8_t keyIndex, uint8_t *key, bool verbose) { if (sw == 0x6988) { if (verbose) PrintAndLogEx(ERR, "Cipurse authentication " _RED_("error") ". Wrong key."); - } else if ((sw == 0x6A88)) { + } else if (sw == 0x6A88) { if (verbose) PrintAndLogEx(ERR, "Cipurse authentication " _RED_("error") ". Wrong key number."); } else {