From e380bf624861b38777a52918fceff106ce698d3a Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sun, 5 Nov 1995 21:13:25 +0000 Subject: [PATCH] Sun Nov 5 16:09:13 1995 Roland McGrath * sysdeps/mach/hurd/getpriority.c (getpriority): Cast __vm_deallocate arg to vm_address_t. --- ChangeLog | 5 +++++ sysdeps/mach/hurd/getpriority.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d141bcb..43e099a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sun Nov 5 16:09:13 1995 Roland McGrath + + * sysdeps/mach/hurd/getpriority.c (getpriority): Cast + __vm_deallocate arg to vm_address_t. + Fri Nov 3 17:27:49 1995 Roland McGrath * sysdeps/mach/hurd/sendto.c: Don't pass BINDING arg to diff --git a/sysdeps/mach/hurd/getpriority.c b/sysdeps/mach/hurd/getpriority.c index 3d7af4d..30497bd 100644 --- a/sysdeps/mach/hurd/getpriority.c +++ b/sysdeps/mach/hurd/getpriority.c @@ -48,7 +48,7 @@ getpriority (enum __priority_which which, int who) &pi, &pisize, &tw, &twsz)); if (twsz) - __vm_deallocate (__mach_task_self (), tw, twsz); + __vm_deallocate (__mach_task_self (), (vm_address_t) tw, twsz); if (pi != oldpi && oldpi != pibuf) /* Old buffer from last call was not reused; free it. */ __vm_deallocate (__mach_task_self (), -- 2.7.4