summaryrefslogtreecommitdiffstats
path: root/sys/boot
diff options
context:
space:
mode:
authoremaste <emaste@FreeBSD.org>2014-04-08 17:50:27 +0000
committeremaste <emaste@FreeBSD.org>2014-04-08 17:50:27 +0000
commitea8aa7fee27c34225dda02d69dd148fc644d7b03 (patch)
treef23de80211434335063086b1b54c35740bb45689 /sys/boot
parent6b9775d1c132ed53e3d04ecab15739c3b4ba21fc (diff)
downloadFreeBSD-src-ea8aa7fee27c34225dda02d69dd148fc644d7b03.zip
FreeBSD-src-ea8aa7fee27c34225dda02d69dd148fc644d7b03.tar.gz
Correct a variable's type for 64-bit Ficl
FICL_INT is long.
Diffstat (limited to 'sys/boot')
-rw-r--r--sys/boot/ficl/words.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/ficl/words.c b/sys/boot/ficl/words.c
index 48e073d..c32e352 100644
--- a/sys/boot/ficl/words.c
+++ b/sys/boot/ficl/words.c
@@ -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;
OpenPOWER on IntegriCloud