summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_pageout.c
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1995-05-10 18:56:09 +0000
committerdg <dg@FreeBSD.org>1995-05-10 18:56:09 +0000
commita2a89cc5d76e3cce6d2f366e27d157dcf019f31b (patch)
tree7bba9e7f3693aeb1cf5c662fe04d148249e6339f /sys/vm/vm_pageout.c
parente910183d902fd3287d9b2f0514ff0cf7ac64a4b9 (diff)
downloadFreeBSD-src-a2a89cc5d76e3cce6d2f366e27d157dcf019f31b.zip
FreeBSD-src-a2a89cc5d76e3cce6d2f366e27d157dcf019f31b.tar.gz
Changed "handle" from type caddr_t to void *; "handle" is several different
types of pointers, and "char *" is a bad choice for the type.
Diffstat (limited to 'sys/vm/vm_pageout.c')
-rw-r--r--sys/vm/vm_pageout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c
index 693d1af..3b54c9e 100644
--- a/sys/vm/vm_pageout.c
+++ b/sys/vm/vm_pageout.c
@@ -65,7 +65,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_pageout.c,v 1.47 1995/04/16 14:12:15 davidg Exp $
+ * $Id: vm_pageout.c,v 1.48 1995/04/17 10:00:55 davidg Exp $
*/
/*
@@ -251,7 +251,7 @@ vm_pageout_clean(m, sync)
object->paging_in_progress++;
- pager = vm_pager_allocate(PG_DFLT, (caddr_t) 0,
+ pager = vm_pager_allocate(PG_DFLT, 0,
object->size, VM_PROT_ALL, 0);
if (pager != NULL) {
object->pager = pager;
OpenPOWER on IntegriCloud