mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-21 04:29:53 +08:00
fix: duplicate breaks
This commit is contained in:
parent
116837e9a0
commit
cd78a0878b
2 changed files with 0 additions and 2 deletions
|
@ -960,7 +960,6 @@ int detect_classic_nackbug(bool verbose) {
|
||||||
int gc = getchar();
|
int gc = getchar();
|
||||||
(void)gc;
|
(void)gc;
|
||||||
return -1;
|
return -1;
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (WaitForResponseTimeout(CMD_ACK, &resp, 500)) {
|
if (WaitForResponseTimeout(CMD_ACK, &resp, 500)) {
|
||||||
|
|
|
@ -344,7 +344,6 @@ int NDEFDecodeAndPrint(uint8_t *ndef, size_t ndefLen, bool verbose) {
|
||||||
case 0xfe: {
|
case 0xfe: {
|
||||||
PrintAndLogEx(INFO, "-- NDEF Terminator. Done.");
|
PrintAndLogEx(INFO, "-- NDEF Terminator. Done.");
|
||||||
return 0;
|
return 0;
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
default: {
|
default: {
|
||||||
PrintAndLogEx(ERR, "unknown tag 0x%02x", ndef[indx]);
|
PrintAndLogEx(ERR, "unknown tag 0x%02x", ndef[indx]);
|
||||||
|
|
Loading…
Add table
Reference in a new issue