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:
parent
9868276d3b
commit
595b2caa3f
@ -4822,7 +4822,7 @@ WORDKIND ficlWordClassify(FICL_WORD *pFW)
|
|||||||
**************************************************************************/
|
**************************************************************************/
|
||||||
static void ficlRandom(FICL_VM *pVM)
|
static void ficlRandom(FICL_VM *pVM)
|
||||||
{
|
{
|
||||||
PUSHINT(random());
|
PUSHUNS(random());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user