From baa2f7e44ab9ba9337b92001eb3615e7dc386c7c Mon Sep 17 00:00:00 2001 From: jsteube Date: Sat, 28 Oct 2017 12:19:21 +0200 Subject: [PATCH] Remove unsused variable user_options_extra in autotune.c --- src/autotune.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/autotune.c b/src/autotune.c index b0bd811fc..ff639f3e7 100644 --- a/src/autotune.c +++ b/src/autotune.c @@ -48,10 +48,9 @@ static double try_run (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_par static int autotune (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param) { - hashconfig_t *hashconfig = hashcat_ctx->hashconfig; - opencl_ctx_t *opencl_ctx = hashcat_ctx->opencl_ctx; - straight_ctx_t *straight_ctx = hashcat_ctx->straight_ctx; - user_options_extra_t *user_options_extra = hashcat_ctx->user_options_extra; + const hashconfig_t *hashconfig = hashcat_ctx->hashconfig; + const opencl_ctx_t *opencl_ctx = hashcat_ctx->opencl_ctx; + const straight_ctx_t *straight_ctx = hashcat_ctx->straight_ctx; const double target_msec = opencl_ctx->target_msec;