From 491db20d54026acf312812d674a7ed6f653ae93e Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Tue, 11 Feb 2014 23:23:42 +0100 Subject: [PATCH] nfc-jewel: remove extraneous parentheses to silence warning --- utils/nfc-jewel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/nfc-jewel.c b/utils/nfc-jewel.c index 19bd3cd..d892083 100644 --- a/utils/nfc-jewel.c +++ b/utils/nfc-jewel.c @@ -146,7 +146,7 @@ write_card(void) for (block = uiSkippedBlocks; block <= uiBlocks; block++) { // Skip block 0x0D - it is reserved for internal use and can't be written - if ((block == 0x0D)) { + if (block == 0x0D) { printf("s"); uiSkippedBlocks++; continue;