]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
fixed indentation to get rid of warnings
authorRené Werner <mail@renewerner.net>
Tue, 13 Sep 2016 18:57:25 +0000 (20:57 +0200)
committerRené Werner <mail@renewerner.net>
Tue, 13 Sep 2016 18:57:25 +0000 (20:57 +0200)
warnings are treated as errors, so a warning due to misleading
indentation is kinda annoying

armsrc/iso14443b.c
bootrom/bootrom.c
common/lfdemod.c

index cc8cd65a78df945f376be41719fb4f195661feb9..00d2e7a30601c21bcf2b52d9902f79c73c7f6e96 100644 (file)
@@ -1639,11 +1639,11 @@ void RAMFUNC SnoopIso14443b(void) {
                                if (triggered)
                                        LogTrace(Uart.output, Uart.byteCnt, time_start, time_stop, NULL, TRUE);
 
-                                       /* And ready to receive another command. */
-                                       UartReset();
-                                       /* And also reset the demod code, which might have been */
-                                       /* false-triggered by the commands from the reader. */
-                                       DemodReset();
+                /* And ready to receive another command. */
+                UartReset();
+                /* And also reset the demod code, which might have been */
+                /* false-triggered by the commands from the reader. */
+                DemodReset();
                        } else {
                                time_start = GetCountSspClk() - time_0;
                        }
@@ -1771,4 +1771,4 @@ void SendRawCommand14443B_Ex(UsbCommand *c)
                //FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_READER_TX | FPGA_HF_READER_TX_SHALLOW_MOD);              
        }
        
-}
\ No newline at end of file
+}
index 63c04ae5c952ab4ec61aac15f1d61ba4b188e5a4..8b052be7af3def73a0fde8cc1a895bbd4aa677bd 100644 (file)
@@ -141,10 +141,10 @@ void UsbPacketReceived(uint8_t *packet, int len) {
                                // Wait until flashing of page finishes
                                uint32_t sr;
                                while(!((sr = AT91C_BASE_EFC0->EFC_FSR) & AT91C_MC_FRDY));
-                                       if(sr & (AT91C_MC_LOCKE | AT91C_MC_PROGE)) {
-                                               dont_ack = 1;
-                                               cmd_send(CMD_NACK,sr,0,0,0,0);
-                                       }
+                if(sr & (AT91C_MC_LOCKE | AT91C_MC_PROGE)) {
+                    dont_ack = 1;
+                    cmd_send(CMD_NACK,sr,0,0,0,0);
+                }
                        }
                } break;
       
index f231cd69fd54e787506cea2cee9f4d022cf87e0a..56947a1ac634928c6607918db75a160e54c39f54 100644 (file)
@@ -84,7 +84,9 @@ size_t removeParity(uint8_t *BitStream, size_t startIdx, uint8_t pLen, uint8_t p
                        case 3: if (BitStream[j]==1) return 0; break; //should be 0 spacer bit
                        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;
+                               if (parityTest(parityWd, pLen, pType) == 0) 
+                    return 0; 
+                break;
                }
                bitCnt+=(pLen-1);
                parityWd = 0;
Impressum, Datenschutz