mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-14 03:03:14 +08:00
fix: wrong block
This commit is contained in:
parent
357cf59f1b
commit
39de74cb78
1 changed files with 4 additions and 2 deletions
|
@ -527,7 +527,8 @@ int HFiClassReader(const char *Cmd, bool loop, bool verbose) {
|
|||
// no tag found or button pressed
|
||||
if ( (readStatus == 0 && !loop) || readStatus == 0xFF) {
|
||||
// abort
|
||||
if (verbose) PrintAndLog("[-] Quitting..."); {
|
||||
if (verbose) {
|
||||
PrintAndLog("[-] Quitting...");
|
||||
DropField();
|
||||
return 0;
|
||||
}
|
||||
|
@ -553,7 +554,8 @@ int HFiClassReader(const char *Cmd, bool loop, bool verbose) {
|
|||
return 1;
|
||||
}
|
||||
} else {
|
||||
if (verbose) PrintAndLog("[!] command execute timeout");
|
||||
if (verbose)
|
||||
PrintAndLog("[!] command execute timeout");
|
||||
}
|
||||
if (!loop) break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue