1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-03 12:21:07 +00:00

Cosmetix fix for types.h

This commit is contained in:
Gabriele 'matrix' Gristina 2016-01-25 12:28:06 +01:00
parent 58359f3b7e
commit 6cbe3cee50

View File

@ -743,7 +743,7 @@ typedef struct
typedef struct
{
u32 version_bin;
char cwd[256];
char cwd[1024];
u32 pid;
u32 dictpos;
@ -824,6 +824,7 @@ typedef struct
#define PW_MAX1 (PW_MAX + 1)
#define PW_DICTMAX 31
#define PW_DICTMAX1 (PW_DICTMAX + 1)
#define PARAMCNT 32
struct __hc_device_param
{
@ -894,6 +895,7 @@ struct __hc_device_param
uint speed_pos;
u64 speed_cnt[SPEED_CACHE];
float speed_ms[SPEED_CACHE];
hc_timer_t speed_rec[SPEED_CACHE];
hc_timer_t timer_speed;
@ -961,8 +963,6 @@ struct __hc_device_param
cl_mem d_root_css_buf;
cl_mem d_markov_css_buf;
#define PARAMCNT 32
void *kernel_params[PARAMCNT];
void *kernel_params_mp[PARAMCNT];
void *kernel_params_mp_r[PARAMCNT];
@ -1003,7 +1003,6 @@ typedef struct
} adapter_index;
int od_version;
int fan_supported;
// int busid; // used for CL_DEVICE_TOPOLOGY_AMD but broken for dual GPUs
@ -1021,6 +1020,7 @@ typedef struct
uint devices_status;
uint devices_cnt;
uint devices_active;
hc_device_param_t *devices_param;
uint kernel_blocks_all;
@ -1038,6 +1038,7 @@ typedef struct
uint attack_exec;
uint kernel_rules_cnt;
kernel_rule_t *kernel_rules_buf;
uint combs_mode;