diff options
author | dfr <dfr@FreeBSD.org> | 2001-09-04 13:13:12 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 2001-09-04 13:13:12 +0000 |
commit | 838d91e72589ce25aaee9875868cc9b01c8af0a4 (patch) | |
tree | 14039d91e364ddbdd1aa9f3a8e018a0bca6542e6 | |
parent | 8a643be4982187aac54b53a201d1419b380a6ac4 (diff) | |
download | FreeBSD-src-838d91e72589ce25aaee9875868cc9b01c8af0a4.zip FreeBSD-src-838d91e72589ce25aaee9875868cc9b01c8af0a4.tar.gz |
Avoid an alignment fault on 64bit architectures.
Reviewed by: dcs
-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 ed9f087..7888a86 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); |