nfc-jewel: remove extraneous parentheses to silence warning
This commit is contained in:
parent
415ad7cbac
commit
491db20d54
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ write_card(void)
|
||||||
|
|
||||||
for (block = uiSkippedBlocks; block <= uiBlocks; block++) {
|
for (block = uiSkippedBlocks; block <= uiBlocks; block++) {
|
||||||
// Skip block 0x0D - it is reserved for internal use and can't be written
|
// Skip block 0x0D - it is reserved for internal use and can't be written
|
||||||
if ((block == 0x0D)) {
|
if (block == 0x0D) {
|
||||||
printf("s");
|
printf("s");
|
||||||
uiSkippedBlocks++;
|
uiSkippedBlocks++;
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue