From 6c251d48a4e0cd94c2f20aadb78d9564cda68ac1 Mon Sep 17 00:00:00 2001 From: jsteube Date: Wed, 4 Oct 2017 12:59:57 +0200 Subject: [PATCH] Fixed format type in debugging log --- src/opencl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opencl.c b/src/opencl.c index ca36ef27f..01d832f07 100644 --- a/src/opencl.c +++ b/src/opencl.c @@ -4049,7 +4049,7 @@ int opencl_session_begin (hashcat_ctx_t *hashcat_ctx) } #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); #endif }