From 3a77d041e5fd8025d32bd47ad93662507ff0b6dd Mon Sep 17 00:00:00 2001 From: ry4000 <154689120+ry4000@users.noreply.github.com> Date: Mon, 3 Nov 2025 15:00:47 +1100 Subject: [PATCH] R&Y: Test Progress Integer Update in `cmdhfmfdes.c` Signed-off-by: ry4000 <154689120+ry4000@users.noreply.github.com> --- client/src/cmdhfmfdes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/cmdhfmfdes.c b/client/src/cmdhfmfdes.c index 90062a0db..f082fd8b7 100644 --- a/client/src/cmdhfmfdes.c +++ b/client/src/cmdhfmfdes.c @@ -2232,8 +2232,8 @@ static int CmdHF14ADesBruteApps(const char *Cmd) { break; } - float progress = 100.00 * (float)(id - idStart) / ((float)(idEnd - idStart)); - PrintAndLogEx(INPLACE, "Progress " _YELLOW_("%0.01f") " %% current AID: %06X", progress, id); + float progress = 100.0 * (float)(id - idStart) / ((float)(idEnd - idStart)); + PrintAndLogEx(INPLACE, "Brute AID Progress " _YELLOW_("%0.1ff") " %% current AID: %06X", progress, id); res = DesfireSelectAIDHexNoFieldOn(&dctx, id);