mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
(main): Use time_t, not long, to avoid a compiler warning.
This commit is contained in:
parent
285aac852c
commit
5a13a7ec04
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ main (argc, argv)
|
|||
}
|
||||
|
||||
/* initialize random seed */
|
||||
srand((int) (getpid() + time((long *) 0)));
|
||||
srand((int) (getpid() + time((time_t *) 0)));
|
||||
|
||||
setup_yow(fp);
|
||||
yow(fp);
|
||||
|
|
|
|||
Loading…
Reference in a new issue