diff options
author | Roland McGrath <roland@gnu.org> | 1995-11-11 10:01:11 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-11-11 10:01:11 +0000 |
commit | accc07a981d919a8f592285011fb2b6a417db001 (patch) | |
tree | 20fbf100576ad707c54a03841871ca492529cd51 /hurd | |
parent | 75914335da0fd12367af3072dce4f7083829f09e (diff) | |
download | glibc-accc07a981d919a8f592285011fb2b6a417db001.zip glibc-accc07a981d919a8f592285011fb2b6a417db001.tar.gz glibc-accc07a981d919a8f592285011fb2b6a417db001.tar.bz2 |
* malloc/malloc.c (align): Assert that space for alignmentcvs/libc-951113cvs/libc-951112cvs/libc-951111
adjustment is same original space.
* hurd/hurdprio.c (_hurd_priority_which_map): Cast vm_deallocate
arg to vm_address_t.
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/hurdprio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hurd/hurdprio.c b/hurd/hurdprio.c index 9c9ed2b..bbbe317 100644 --- a/hurd/hurdprio.c +++ b/hurd/hurdprio.c @@ -68,7 +68,7 @@ _hurd_priority_which_map (enum __priority_which which, int who, continue; if (twsz) /* Gratuitous. */ - __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 (), |