make style

This commit is contained in:
Anže Jenšterle
2021-02-09 16:52:48 +01:00
parent cf8256979d
commit 8760068a03
2 changed files with 2 additions and 1 deletions

View File

@@ -4021,7 +4021,7 @@ static int CmdHF14ADesBruteApps(const char *Cmd) {
PrintAndLogEx(INFO, "Enumerating through all AIDs manually, this will take a while!");
for (uint32_t id = idStart; id <= idEnd && id >= idStart; id += idIncrement) {
if (kbd_enter_pressed()) break;
int progress = ((id - idStart)*100) / ((idEnd - idStart));
int progress = ((id - idStart) * 100) / ((idEnd - idStart));
PrintAndLogEx(INPLACE, "Progress: %d %%, current AID: %06X", progress, id);
uint8_t appId[3] = {0};
htole24(id, appId);