Commit c163ddca by Danny Smith Committed by Danny Smith

* toplev.c (randomize): Correct call to time().

From-SVN: r69083
parent 2cd5026f
2003-07-08 Danny Smith <dannysmith@users.sourceforge.net>
* toplev.c (randomize): Correct call to time().
2003-07-08 Jakub Jelinek <jakub@redhat.com>
* unroll.c (reg_dead_after_loop): Check for reg in REG_EQUAL and
......
......@@ -1589,7 +1589,7 @@ randomize (void)
}
#else
{
time_t now = time ();
time_t now = time (NULL);
if (now != (time_t)-1)
local_tick = (unsigned) now;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment