From 7b5eb7e675ee0978e1b17b75f827dcd45df8c250 Mon Sep 17 00:00:00 2001 From: Cyril SIX Date: Tue, 5 Jun 2018 17:48:22 +0200 Subject: WIP - Changed all the general tests to include PRNG (instead of small constants) --- test/mppa/lib/prng.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/mppa/lib') diff --git a/test/mppa/lib/prng.c b/test/mppa/lib/prng.c index dfa97834..59ec7ca6 100644 --- a/test/mppa/lib/prng.c +++ b/test/mppa/lib/prng.c @@ -9,7 +9,7 @@ static uint64_t current; void srand(uint64_t seed){ - seed = current; + current = seed; } uint64_t randlong(void){ -- cgit