From a79b1b9e8204e054c8b024d2f6e88b03c6e598b6 Mon Sep 17 00:00:00 2001 From: Antiklesys Date: Fri, 6 Jun 2025 11:34:23 +0800 Subject: [PATCH] Update cmdhficlass.c Signed-off-by: Antiklesys --- client/src/cmdhficlass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmdhficlass.c b/client/src/cmdhficlass.c index 02c645339..e7b38154c 100644 --- a/client/src/cmdhficlass.c +++ b/client/src/cmdhficlass.c @@ -4659,7 +4659,7 @@ static void *brute_thread(void *args_void) { if (index % 1000000 == 0 && !*(args->found)) { pthread_mutex_lock(args->log_lock); if(args->thread_id == 0){ - PrintAndLogEx(INPLACE, "Tested "_YELLOW_("%" PRIu64 )" million keys, using "_YELLOW_("%d")" threads - Index: " _YELLOW_("%d") " - Last key on Thread[0]: %s", (index / 1000000) * args->thread_count, args->thread_count, index / 1000000, sprint_hex(div_key, 8)); + PrintAndLogEx(INPLACE, "Tested "_YELLOW_("%d")" million keys, using "_YELLOW_("%d")" threads - Index: " _YELLOW_("%d") " - Last key on Thread[0]: %s", (index / 1000000) * args->thread_count, args->thread_count, index / 1000000, sprint_hex(div_key, 8)); } pthread_mutex_unlock(args->log_lock); }