diff options
author | emaste <emaste@FreeBSD.org> | 2014-04-08 17:50:27 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2014-04-08 17:50:27 +0000 |
commit | ea8aa7fee27c34225dda02d69dd148fc644d7b03 (patch) | |
tree | f23de80211434335063086b1b54c35740bb45689 /sys/boot | |
parent | 6b9775d1c132ed53e3d04ecab15739c3b4ba21fc (diff) | |
download | FreeBSD-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.c | 2 |
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; |