diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-07-07 03:44:35 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-07-07 03:44:35 +0000 |
commit | b520dcf42bbbf548ee926358506c4e493717265b (patch) | |
tree | 021c04b96a0a6fd446ef6f55324347f7de33fdfb | |
parent | 0f708fc44aca90ee2056a0686ddb6a0dee45a67b (diff) |
(S_io_reauthenticate): Cast first arg to mig_deallocate.
-rw-r--r-- | boot/boot.c | 8 |
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; |