]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
wrong letter in variable name
authoriceman1001 <iceman@iuse.se>
Thu, 29 Jan 2015 21:22:29 +0000 (22:22 +0100)
committericeman1001 <iceman@iuse.se>
Thu, 29 Jan 2015 21:35:19 +0000 (22:35 +0100)
Conflicts:
client/cmddata.c

client/cmddata.c

index 8c91f0e115ce84c7f6e934861e784d5341943215..cf4dc6b9b251c992a6ab84d29712fe334076d313 100644 (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],
Impressum, Datenschutz