1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-07-23 15:08:37 +00:00

fix type mismatch in msg

This commit is contained in:
Royce Williams 2025-07-01 18:21:02 -08:00
parent f6afc8696c
commit 7c9c1af30f

View File

@ -2292,13 +2292,13 @@ void status_display (hashcat_ctx_t *hashcat_ctx)
if (hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL)
{
event_log_info (hashcat_ctx,
"Kernel.Feature...: Optimized Kernel (max length: %s)",
"Kernel.Feature...: Optimized Kernel (max length: %u)",
hashconfig->pw_max);
}
else
{
event_log_info (hashcat_ctx,
"Kernel.Feature...: Pure Kernel (max length: %s)",
"Kernel.Feature...: Pure Kernel (max length: %u)",
hashconfig->pw_max);
}