X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/78f59945a725db88acacc772a37f32ff6debea56..a5d824656811693c9f31cf41766e419b2dd799f9:/common/lfdemod.c?ds=sidebyside diff --git a/common/lfdemod.c b/common/lfdemod.c index 56947a1a..ff80b8b3 100644 --- a/common/lfdemod.c +++ b/common/lfdemod.c @@ -85,8 +85,8 @@ size_t removeParity(uint8_t *BitStream, size_t startIdx, uint8_t pLen, uint8_t p 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; + return 0; + break; } bitCnt+=(pLen-1); parityWd = 0;