From 39de74cb7889ee481ce7daea5091f96d8247c986 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 8 Feb 2018 12:39:35 +0100 Subject: [PATCH] fix: wrong block --- client/cmdhficlass.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/client/cmdhficlass.c b/client/cmdhficlass.c index 274b3112e..aca65a8be 100644 --- a/client/cmdhficlass.c +++ b/client/cmdhficlass.c @@ -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; }