From 32482f61da7650ff10741bd5aedd66bbc3ea165b Mon Sep 17 00:00:00 2001 From: Jens Gustedt Date: Wed, 3 Jan 2018 14:17:12 +0100 Subject: revise the definition of multiple basic locks in the code In all cases this is just a change from two volatile int to one. --- src/prng/random.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/prng') diff --git a/src/prng/random.c b/src/prng/random.c index 7d557d70..13a5e6df 100644 --- a/src/prng/random.c +++ b/src/prng/random.c @@ -22,7 +22,7 @@ static int n = 31; static int i = 3; static int j = 0; static uint32_t *x = init+1; -static volatile int lock[2]; +static volatile int lock[1]; static uint32_t lcg31(uint32_t x) { return (1103515245*x + 12345) & 0x7fffffff; -- cgit v1.2.1