mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-28 18:14:39 +08:00
fixed indentation to get rid of warnings
warnings are treated as errors, so a warning due to misleading indentation is kinda annoying
This commit is contained in:
parent
111c6934d4
commit
78f59945a7
3 changed files with 13 additions and 11 deletions
|
@ -84,7 +84,9 @@ size_t removeParity(uint8_t *BitStream, size_t startIdx, uint8_t pLen, uint8_t p
|
|||
case 3: if (BitStream[j]==1) return 0; break; //should be 0 spacer bit
|
||||
case 2: if (BitStream[j]==0) return 0; break; //should be 1 spacer bit
|
||||
default: //test parity
|
||||
if (parityTest(parityWd, pLen, pType) == 0) return 0; break;
|
||||
if (parityTest(parityWd, pLen, pType) == 0)
|
||||
return 0;
|
||||
break;
|
||||
}
|
||||
bitCnt+=(pLen-1);
|
||||
parityWd = 0;
|
||||
|
|
Loading…
Reference in a new issue