wrong letter in variable name

Conflicts:
	client/cmddata.c
This commit is contained in:
iceman1001 2015-01-29 22:22:29 +01:00
parent 92623113b4
commit 33c7e2f3bc

View file

@ -56,6 +56,11 @@ void printDemodBuff()
return;
}
if (bitLen>512) bitLen=512; //max output to 512 bits if we have more - should be plenty
// equally divided by 16
if ( bitLen % 16 > 0)
bitLen = (bitLen/16);
for (i = 0; i <= (bitLen-16); i+=16) {
PrintAndLog("%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i",
DemodBuffer[i],