Merge pull request #26 from ickerwx/indentation_fix

Indentation fix
This commit is contained in:
Iceman 2016-09-13 23:37:39 +02:00 committed by GitHub
commit a5d8246568
3 changed files with 12 additions and 10 deletions

View file

@ -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;