--- src/lib/libc/stdlib/random.c 2005/11/20 12:37:49 1.7 +++ src/lib/libc/stdlib/random.c 2005/11/20 14:58:40 1.8 @@ -306,7 +306,7 @@ srandomdev(void) if (!done) { struct timeval tv; - unsigned long junk; + unsigned long junk; /* XXX left uninitialized on purpose */ gettimeofday(&tv, NULL); srandom(getpid() ^ tv.tv_sec ^ tv.tv_usec ^ junk);