small fix to please @dmaij's compiler (issue #703)

This commit is contained in:
pwpiwi 2018-10-23 19:50:37 +02:00
parent 8c6cca0ba1
commit 3685f89cbd

View file

@ -837,6 +837,7 @@ static void DecodeReaderInit(uint8_t *data, uint16_t max_len, DecodeReader_t* De
DecodeReader->state = STATE_READER_UNSYNCD;
DecodeReader->byteCount = 0;
DecodeReader->bitCount = 0;
DecodeReader->posCount = 0;
DecodeReader->shiftReg = 0;
}