Revision: 491db20d5402
Author: Philippe Teuwen <
yob...@gmail.com>
Date: Tue Feb 11 22:23:42 2014 UTC
Log: nfc-jewel: remove extraneous parentheses to silence warning
http://code.google.com/p/libnfc/source/detail?r=491db20d5402
Modified:
/utils/nfc-jewel.c
=======================================
--- /utils/nfc-jewel.c Sun Feb 2 23:04:08 2014 UTC
+++ /utils/nfc-jewel.c Tue Feb 11 22:23:42 2014 UTC
@@ -146,7 +146,7 @@
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;