Skip to content

Commit

Permalink
nfc-jewel: remove extraneous parentheses to silence warning
Browse files Browse the repository at this point in the history
  • Loading branch information
doegox committed Feb 11, 2014
1 parent 415ad7c commit 491db20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/nfc-jewel.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 491db20

Please sign in to comment.