Correct a variable's type for 64-bit Ficl

FICL_INT is long.
This commit is contained in:
emaste 2014-04-08 17:50:27 +00:00
parent 6b9775d1c1
commit ea8aa7fee2

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;