From d7d809a8e3d8d91d8483faaa417b2e46b6af7425 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 26 Oct 2020 10:00:44 +0100 Subject: [PATCH] remove extra parenthesis --- client/src/cmdsmartcard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmdsmartcard.c b/client/src/cmdsmartcard.c index 405bad8db..9959fe49b 100644 --- a/client/src/cmdsmartcard.c +++ b/client/src/cmdsmartcard.c @@ -690,7 +690,7 @@ static int CmdSmartUpgrade(const char *Cmd) { return PM3_ETIMEOUT; } - if ((resp.status == PM3_SUCCESS)) { + if (resp.status == PM3_SUCCESS) { PrintAndLogEx(SUCCESS, "Sim module firmware upgrade " _GREEN_("successful")); PrintAndLogEx(HINT, "run " _YELLOW_("`hw status`") " to validate the fw version "); } else {