From cd78a0878bcf3a291a1f45352f3ba8706e0bc84e Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 4 Apr 2019 22:08:23 +0200 Subject: [PATCH] fix: duplicate breaks --- client/mifare/mifarehost.c | 1 - client/mifare/ndef.c | 1 - 2 files changed, 2 deletions(-) diff --git a/client/mifare/mifarehost.c b/client/mifare/mifarehost.c index 9c99f95a3b..905fdcc820 100644 --- a/client/mifare/mifarehost.c +++ b/client/mifare/mifarehost.c @@ -960,7 +960,6 @@ int detect_classic_nackbug(bool verbose) { int gc = getchar(); (void)gc; return -1; - break; } if (WaitForResponseTimeout(CMD_ACK, &resp, 500)) { diff --git a/client/mifare/ndef.c b/client/mifare/ndef.c index b888d82699..da03ecc8f2 100644 --- a/client/mifare/ndef.c +++ b/client/mifare/ndef.c @@ -344,7 +344,6 @@ int NDEFDecodeAndPrint(uint8_t *ndef, size_t ndefLen, bool verbose) { case 0xfe: { PrintAndLogEx(INFO, "-- NDEF Terminator. Done."); return 0; - break; } default: { PrintAndLogEx(ERR, "unknown tag 0x%02x", ndef[indx]);