From: Martin Mares Date: Sat, 3 May 1997 18:15:37 +0000 (+0000) Subject: Too much changes... Read the ChangeLogs. X-Git-Tag: holmes-import~1698 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=3503a79b25a813b9d8540dc64e23dca427e97763;p=libucw.git Too much changes... Read the ChangeLogs. --- diff --git a/lib/temp.c b/lib/temp.c index ce9ab573..32a6529b 100644 --- a/lib/temp.c +++ b/lib/temp.c @@ -22,7 +22,7 @@ temprand(uns key) seeded = 1; srand(getpid()); } - rand = random(); + rand = random() << 1; rand += key * 0xdeadbeef; return rand; }