mirror of
https://github.com/hashcat/hashcat.git
synced 2025-04-17 15:56:20 +00:00
Fix some compiler warnings for older compilers
This commit is contained in:
parent
0309afc273
commit
e0189cb741
@ -753,25 +753,29 @@ typedef struct luks_tmp
|
||||
{
|
||||
u32 ipad32[32];
|
||||
u64 ipad64[16];
|
||||
};
|
||||
|
||||
} ipad;
|
||||
|
||||
union
|
||||
{
|
||||
u32 opad32[32];
|
||||
u64 opad64[16];
|
||||
};
|
||||
|
||||
} opad;
|
||||
|
||||
union
|
||||
{
|
||||
u32 dgst32[32];
|
||||
u64 dgst64[16];
|
||||
};
|
||||
|
||||
} dgst;
|
||||
|
||||
union
|
||||
{
|
||||
u32 out32[32];
|
||||
u64 out64[16];
|
||||
};
|
||||
|
||||
} out;
|
||||
|
||||
} luks_tmp_t;
|
||||
|
||||
|
@ -135,25 +135,29 @@ typedef struct luks_tmp
|
||||
{
|
||||
u32 ipad32[32];
|
||||
u64 ipad64[16];
|
||||
};
|
||||
|
||||
} ipad;
|
||||
|
||||
union
|
||||
{
|
||||
u32 opad32[32];
|
||||
u64 opad64[16];
|
||||
};
|
||||
|
||||
} opad;
|
||||
|
||||
union
|
||||
{
|
||||
u32 dgst32[32];
|
||||
u64 dgst64[16];
|
||||
};
|
||||
|
||||
} dgst;
|
||||
|
||||
union
|
||||
{
|
||||
u32 out32[32];
|
||||
u64 out64[16];
|
||||
};
|
||||
|
||||
} out;
|
||||
|
||||
} luks_tmp_t;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user