1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-26 00:18:36 +00:00

Fixed format type in debugging log

This commit is contained in:
jsteube 2017-10-04 12:59:57 +02:00
parent 48684d9fcf
commit 6c251d48a4

View File

@ -4049,7 +4049,7 @@ int opencl_session_begin (hashcat_ctx_t *hashcat_ctx)
} }
#if defined (DEBUG) #if defined (DEBUG)
if (user_options->quiet == false) event_log_warning (hashcat_ctx, "SCRYPT tmto optimizer value set to: %u, mem: %" PRIu64, scrypt_tmto_final, (u64) size_scrypt); if (user_options->quiet == false) event_log_warning (hashcat_ctx, "SCRYPT tmto optimizer value set to: %lu, mem: %lu", scrypt_tmto_final, size_scrypt);
if (user_options->quiet == false) event_log_warning (hashcat_ctx, NULL); if (user_options->quiet == false) event_log_warning (hashcat_ctx, NULL);
#endif #endif
} }