diff options
Diffstat (limited to 'lib/libc/stdlib/rand.c')
-rw-r--r-- | lib/libc/stdlib/rand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdlib/rand.c b/lib/libc/stdlib/rand.c index 8de8ead..314fb92 100644 --- a/lib/libc/stdlib/rand.c +++ b/lib/libc/stdlib/rand.c @@ -130,7 +130,7 @@ sranddev() unsigned long junk; gettimeofday(&tv, NULL); - next = getpid() ^ tv.tv_sec ^ tv.tv_usec ^ junk; + next = (getpid() << 16) ^ tv.tv_sec ^ tv.tv_usec ^ junk; } } |