1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-05 06:58:56 +00:00

Fix spin_damp datatype

This commit is contained in:
jsteube 2019-04-19 12:26:37 +02:00
parent 75b92c1ab1
commit 4548d15dde
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ static double try_run (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_par
const u32 kernel_power_try = device_param->hardware_power * kernel_accel;
float spin_damp_sav = device_param->spin_damp;
const double spin_damp_sav = device_param->spin_damp;
device_param->spin_damp = 0;

View File

@ -324,7 +324,7 @@ static int selftest (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param
// main : run the kernel
const u32 spin_damp_sav = device_param->spin_damp;
const double spin_damp_sav = device_param->spin_damp;
device_param->spin_damp = 0;