mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
style
This commit is contained in:
parent
eef53a853a
commit
36ecc4be97
2 changed files with 2 additions and 2 deletions
|
@ -108,7 +108,7 @@ int CmdHFTune(const char *Cmd) {
|
|||
}
|
||||
mode[0] = 2;
|
||||
// loop forever (till button pressed) if iter = 0 (default)
|
||||
for (uint8_t i=0; iter == 0 || i< iter; i++) {
|
||||
for (uint8_t i = 0; iter == 0 || i < iter; i++) {
|
||||
if (ukbhit()) { // abort by keyboard press
|
||||
int gc = getchar();
|
||||
(void)gc;
|
||||
|
|
|
@ -92,7 +92,7 @@ void PrintAndLogEx(logLevel_t level, const char *fmt, ...) {
|
|||
strncpy(prefix, spinner[PrintAndLogEx_spinidx], sizeof(prefix) - 1);
|
||||
PrintAndLogEx_spinidx++;
|
||||
if (PrintAndLogEx_spinidx == ARRAYLEN(spinner))
|
||||
PrintAndLogEx_spinidx = 0;
|
||||
PrintAndLogEx_spinidx = 0;
|
||||
break;
|
||||
case NORMAL:
|
||||
// no prefixes for normal
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue