svn commit: r264261 - head/sys/boot/ficl
Ed Maste
emaste at FreeBSD.org
Tue Apr 8 17:50:28 UTC 2014
Author: emaste
Date: Tue Apr 8 17:50:27 2014
New Revision: 264261
URL: http://svnweb.freebsd.org/changeset/base/264261
Log:
Correct a variable's type for 64-bit Ficl
FICL_INT is long.
Modified:
head/sys/boot/ficl/words.c
Modified: head/sys/boot/ficl/words.c
==============================================================================
--- head/sys/boot/ficl/words.c Tue Apr 8 17:40:09 2014 (r264260)
+++ head/sys/boot/ficl/words.c Tue Apr 8 17:50:27 2014 (r264261)
@@ -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;
More information about the svn-src-all
mailing list