Skip to content

Commit e2efcd0

Browse files
authored
Cast back int to uint internally
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent 4c060f6 commit e2efcd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

HashifyNet/Algorithms/Jenkins/JenkinsLookup2_Implementation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public BlockTransformer(IJenkinsLookup2Config config)
8484
{
8585
_a = 0x9e3779b9;
8686
_b = 0x9e3779b9;
87-
_c = config.Seed;
87+
_c = (uint)config.Seed;
8888

8989
_bytesProcessed = 0;
9090
}

0 commit comments

Comments
 (0)