From c815c7a05944b20790495cbc9d650bc304bb872d Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Sat, 18 Feb 2017 16:28:22 +0100 Subject: [PATCH] nfc-mfultralight: remove dead assignment nfc-mfultralight.c:274:7: warning: Value stored to 'bFailure' is never read bFailure = false; ^ ~~~~~ --- utils/nfc-mfultralight.c | 1 - 1 file changed, 1 deletion(-) diff --git a/utils/nfc-mfultralight.c b/utils/nfc-mfultralight.c index b89bc43..a599176 100644 --- a/utils/nfc-mfultralight.c +++ b/utils/nfc-mfultralight.c @@ -272,7 +272,6 @@ write_card(bool write_otp, bool write_lock, bool write_uid) } else { if (!check_magic()) { printf("\nUnable to unlock card - are you sure the card is magic?\n"); - bFailure = false; return false; } }