Deleted Added
full compact
44c44
< /* $FreeBSD: head/sys/boot/ficl/words.c 94290 2002-04-09 17:45:28Z dcs $ */
---
> /* $FreeBSD: head/sys/boot/ficl/words.c 102657 2002-08-31 01:04:53Z scottl $ */
735c735
< int append = FICL_TRUE;
---
> FICL_INT append = FICL_TRUE;
819c819
< if (append == FICL_TRUE)
---
> if (append != FICL_FALSE)
1265c1265
< vmBranchRelative(pVM, *(int *)(pVM->ip));
---
> vmBranchRelative(pVM, (uintptr_t)*(pVM->ip));
1314c1314
< vmBranchRelative(pVM, *(int *)(pVM->ip));
---
> vmBranchRelative(pVM, (uintptr_t)*(pVM->ip));
1476c1476
< return FICL_TRUE;
---
> return (int)FICL_TRUE;
1492c1492
< return FICL_TRUE;
---
> return (int)FICL_TRUE;
1925c1925
< vmBranchRelative(pVM, *(int *)(pVM->ip));
---
> vmBranchRelative(pVM, (uintptr_t)*(pVM->ip));
1960c1960
< vmBranchRelative(pVM, *(int *)(pVM->ip));
---
> vmBranchRelative(pVM, (uintptr_t)*(pVM->ip));