From 40da271e34d697b7bc947dd12fe5356874482317 Mon Sep 17 00:00:00 2001 From: Richard Thier Date: Wed, 2 Apr 2025 20:12:52 +0200 Subject: [PATCH] fixed one more ILP bug --- fastrand.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fastrand.h b/fastrand.h index 5673e81..83ce6b5 100644 --- a/fastrand.h +++ b/fastrand.h @@ -56,10 +56,10 @@ static inline rand_ilp_state init_rand_ilp_with( ret.b = seed2; ret.c = seed3; ret.d = seed4; - ret.e = seed1; - ret.f = seed2; - ret.g = seed3; - ret.h = seed4; + ret.e = seed5; + ret.f = seed6; + ret.g = seed7; + ret.h = seed8; return ret; }