mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 20:39:17 +00:00
Fix uint datatype (should be u32)
This commit is contained in:
parent
3d632d9a42
commit
e47932262d
@ -339,7 +339,7 @@ u32 get_random_num (const u32 min, const u32 max)
|
||||
{
|
||||
if (min == max) return (min);
|
||||
|
||||
const uint low = max - min;
|
||||
const u32 low = max - min;
|
||||
|
||||
if (low == 0) return (0);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user