From 331aac2afa0e43d1c8a198eba571e60cec256427 Mon Sep 17 00:00:00 2001 From: Ron Koenderink Date: Wed, 29 Dec 2004 23:20:24 +0000 Subject: [PATCH] (main) [_WIN32]: remove getpid() from the random seed as it did not improve the randomness of the seed. --- src/util/fairland.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/util/fairland.c b/src/util/fairland.c index 0436dfb22..4c5e30281 100644 --- a/src/util/fairland.c +++ b/src/util/fairland.c @@ -195,9 +195,6 @@ main(int argc, char *argv[]) int i = 0; rnd_seed = time(NULL); -#if !defined(_WIN32) - rnd_seed += getpid(); -#endif while ((opt = getopt(argc, argv, "ae:ioqs:R:")) != EOF) { switch (opt) { -- 2.43.0