diff --git a/common/memops.c b/common/memops.c index 27f6194a..2d416b64 100644 --- a/common/memops.c +++ b/common/memops.c @@ -198,7 +198,7 @@ static inline __m128i float_24_sse(__m128 s) */ static unsigned int seed = 22222; -inline unsigned int fast_rand() { +static inline unsigned int fast_rand() { seed = (seed * 96314165) + 907633515; return seed; }