From 1a4f097e7a524942b8757c9eb3748ba72ef0c6c9 Mon Sep 17 00:00:00 2001 From: Doug Rabson Date: Tue, 4 Sep 2001 13:13:12 +0000 Subject: [PATCH] Avoid an alignment fault on 64bit architectures. Reviewed by: dcs --- sys/boot/ficl/words.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/boot/ficl/words.c b/sys/boot/ficl/words.c index ed9f087b24fb..7888a863df85 100644 --- a/sys/boot/ficl/words.c +++ b/sys/boot/ficl/words.c @@ -1147,7 +1147,7 @@ static void ifParen(FICL_VM *pVM) static void elseCoIm(FICL_VM *pVM) { CELL *patchAddr; - int offset; + FICL_INT offset; FICL_DICT *dp = ficlGetDict(); assert(pBranchParen);