1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-03 12:35:02 +00:00

Fix initstate() cast to match Lite2

This commit is contained in:
Andrey A. Chernov 1997-03-17 16:32:14 +00:00
parent 94fa7afda3
commit 2eaf474aea
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=23970

View File

@ -938,7 +938,7 @@ do_rand(tree)
NODE *tree;
{
if (firstrand) {
(void) initstate((unsigned) 1, state, sizeof state);
(void) initstate((unsigned long) 1, state, sizeof state);
srandom(1);
firstrand = 0;
}
@ -954,7 +954,7 @@ NODE *tree;
long ret = save_seed; /* SVR4 awk srand returns previous seed */
if (firstrand)
(void) initstate((unsigned) 1, state, sizeof state);
(void) initstate((unsigned long) 1, state, sizeof state);
else
(void) setstate(state);