mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-29 11:52:59 +08:00
style
This commit is contained in:
parent
ba45da1c28
commit
ffd2c92584
3 changed files with 7 additions and 7 deletions
|
@ -995,7 +995,7 @@ static bool GetIClassCommandFromReader(uint8_t *received, int *len, int maxLen)
|
|||
// clear RXRDY:
|
||||
uint8_t b = (uint8_t)AT91C_BASE_SSC->SSC_RHR;
|
||||
(void)b;
|
||||
|
||||
|
||||
while (!BUTTON_PRESS()) {
|
||||
WDT_HIT();
|
||||
|
||||
|
@ -1799,7 +1799,7 @@ static int GetIClassAnswer(uint8_t *receivedResponse, int maxLen, int *samples,
|
|||
// clear RXRDY:
|
||||
uint8_t b = (uint8_t)AT91C_BASE_SSC->SSC_RHR;
|
||||
(void)b;
|
||||
|
||||
|
||||
while (!BUTTON_PRESS()) {
|
||||
WDT_HIT();
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ void mf_crypto1_decryptEx(struct Crypto1State *pcs, uint8_t *data_in, int len, u
|
|||
for (int i = 0; i < len; i++)
|
||||
data_out[i] = crypto1_byte(pcs, 0x00, 0) ^ data_in[i];
|
||||
} else {
|
||||
uint8_t bt = 0;
|
||||
uint8_t bt = 0;
|
||||
bt |= (crypto1_bit(pcs, 0, 0) ^ BIT(data_in[0], 0)) << 0;
|
||||
bt |= (crypto1_bit(pcs, 0, 0) ^ BIT(data_in[0], 1)) << 1;
|
||||
bt |= (crypto1_bit(pcs, 0, 0) ^ BIT(data_in[0], 2)) << 2;
|
||||
|
|
|
@ -2963,16 +2963,16 @@ static int trex_class(TRex *exp) {
|
|||
if (*exp->_p++ == ']') {
|
||||
trex_error(exp, _SC("unfinished range"));
|
||||
}
|
||||
|
||||
|
||||
r = trex_newnode(exp, OP_RANGE);
|
||||
if (first > *exp->_p) {
|
||||
trex_error(exp, _SC("invalid range"));
|
||||
}
|
||||
|
||||
|
||||
if (exp->_nodes[first].type == OP_CCLASS) {
|
||||
trex_error(exp, _SC("cannot use character classes in ranges"));
|
||||
}
|
||||
|
||||
|
||||
exp->_nodes[r].left = exp->_nodes[first].type;
|
||||
t = trex_escapechar(exp);
|
||||
exp->_nodes[r].right = t;
|
||||
|
@ -4548,7 +4548,7 @@ void arg_print_formatted(FILE *fp,
|
|||
const unsigned colwidth = (rmargin - lmargin) + 1;
|
||||
|
||||
/* Someone doesn't like us... */
|
||||
if (line_end == line_start) {
|
||||
if (line_end == line_start) {
|
||||
fprintf(fp, "%s\n", text);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue