summaryrefslogtreecommitdiff
path: root/boot/boot.c
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1995-07-07 03:44:35 +0000
committerMichael I. Bushnell <mib@gnu.org>1995-07-07 03:44:35 +0000
commitb520dcf42bbbf548ee926358506c4e493717265b (patch)
tree021c04b96a0a6fd446ef6f55324347f7de33fdfb /boot/boot.c
parent0f708fc44aca90ee2056a0686ddb6a0dee45a67b (diff)
(S_io_reauthenticate): Cast first arg to mig_deallocate.
Diffstat (limited to 'boot/boot.c')
-rw-r--r--boot/boot.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/boot/boot.c b/boot/boot.c
index 5d4b6d3a..92d8a027 100644
--- a/boot/boot.c
+++ b/boot/boot.c
@@ -1709,10 +1709,10 @@ S_io_reauthenticate (mach_port_t object,
&gg, &gglen,
&ag, &aglen))
{
- mig_deallocate (gu, gulen * sizeof *gu);
- mig_deallocate (au, aulen * sizeof *gu);
- mig_deallocate (gg, gglen * sizeof *gu);
- mig_deallocate (au, aulen * sizeof *gu);
+ mig_deallocate ((vm_address_t) gu, gulen * sizeof *gu);
+ mig_deallocate ((vm_address_t) au, aulen * sizeof *gu);
+ mig_deallocate ((vm_address_t) gg, gglen * sizeof *gu);
+ mig_deallocate ((vm_address_t) au, aulen * sizeof *gu);
}
return 0;