From b9e8adc16091f8ec162f40111d8fb6339381f0d9 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Tue, 18 Dec 2018 12:08:49 +0100 Subject: [PATCH] rand: fix typo --- rand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rand.c b/rand.c index 109d15807..70743ae6f 100644 --- a/rand.c +++ b/rand.c @@ -37,7 +37,7 @@ uint32_t random32(void) { - // Linear congruential generator used in glibc + // Linear congruential generator from Numerical Recipes // https://en.wikipedia.org/wiki/Linear_congruential_generator static uint32_t seed = 0; seed = 1664525 * seed + 1013904223;