Fixed all "misleading-indentation" warnings (fixes #187).

This commit is contained in:
ikarus 2016-09-26 21:15:49 +02:00
commit 2943527472
4 changed files with 12 additions and 10 deletions

View file

@ -696,14 +696,17 @@ int CmdHF14ACmdRaw(const char *cmd) {
c.arg[2] = 13560000 / 1000 / (8*16) * timeout; // timeout in ETUs (time to transfer 1 bit, approx. 9.4 us)
}
if(power)
if(power) {
c.arg[0] |= ISO14A_NO_DISCONNECT;
}
if(datalen > 0)
if(datalen > 0) {
c.arg[0] |= ISO14A_RAW;
}
if(topazmode)
if(topazmode) {
c.arg[0] |= ISO14A_TOPAZMODE;
}
// Max buffer is USB_CMD_DATA_SIZE
c.arg[1] = (datalen & 0xFFFF) | (numbits << 16);