fixed one more ILP bug

This commit is contained in:
Richard Thier 2025-04-02 20:12:52 +02:00
parent 1a3e87e076
commit 40da271e34

View File

@ -56,10 +56,10 @@ static inline rand_ilp_state init_rand_ilp_with(
ret.b = seed2; ret.b = seed2;
ret.c = seed3; ret.c = seed3;
ret.d = seed4; ret.d = seed4;
ret.e = seed1; ret.e = seed5;
ret.f = seed2; ret.f = seed6;
ret.g = seed3; ret.g = seed7;
ret.h = seed4; ret.h = seed8;
return ret; return ret;
} }