Correct a variable's type for 64-bit Ficl

FICL_INT is long.
This commit is contained in:
Ed Maste 2014-04-08 17:50:27 +00:00
parent 6d2723543a
commit 6cf1ada9e1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=264261

View File

@ -2567,7 +2567,7 @@ static void setObjectFlag(FICL_VM *pVM)
static void isObject(FICL_VM *pVM)
{
int flag;
FICL_INT flag;
FICL_WORD *pFW = (FICL_WORD *)stackPopPtr(pVM->pStack);
flag = ((pFW != NULL) && (pFW->flags & FW_ISOBJECT)) ? FICL_TRUE : FICL_FALSE;