diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-11-28 17:06:10 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-12-07 13:53:42 +0100 |
commit | 574b2324275d3292e98a8e329f791eb5c799f7f2 (patch) | |
tree | 37f5bcc1edf1bcdcd61380c76fe214afce523bcd /sysdep/unix/io.c | |
parent | 3b3b0910ffb1b212b1c9ea420db6c575a3ecb71a (diff) |
Timers: Fix TBF and some last remains
Diffstat (limited to 'sysdep/unix/io.c')
-rw-r--r-- | sysdep/unix/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c index 3e56a32d..a196bbe2 100644 --- a/sysdep/unix/io.c +++ b/sysdep/unix/io.c @@ -2132,7 +2132,7 @@ io_init(void) // XXX init_times(); // XXX update_times(); boot_time = current_time(); - srandom((int) now_real); + srandom((uint) (current_real_time() TO_S)); } static int short_loops = 0; |