1
0
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:
jsteube 2017-02-15 13:26:02 +01:00
parent 3d632d9a42
commit e47932262d

View File

@ -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);