ficl: Replace rand(3) with random(3).

Be a little more consistent with random(3) and push an
unsigned value.

Again, this has no effect as this code doesn't get compiled
for the boot code.
This commit is contained in:
Pedro F. Giffuni 2016-02-08 20:03:14 +00:00
parent 9868276d3b
commit 595b2caa3f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=295410

View File

@ -4822,7 +4822,7 @@ WORDKIND ficlWordClassify(FICL_WORD *pFW)
**************************************************************************/
static void ficlRandom(FICL_VM *pVM)
{
PUSHINT(random());
PUSHUNS(random());
}