diff options
author | phk <phk@FreeBSD.org> | 1997-10-10 18:18:47 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1997-10-10 18:18:47 +0000 |
commit | a8f67509a68e961b8237e2b5c085f263b7aa364f (patch) | |
tree | d55c519e1fa94e66356d8979a8011984aeb852ee /sys/vm/vm_page.c | |
parent | c0089963c1d9fa30e4a62aa5176c94d7e19676da (diff) | |
download | FreeBSD-src-a8f67509a68e961b8237e2b5c085f263b7aa364f.zip FreeBSD-src-a8f67509a68e961b8237e2b5c085f263b7aa364f.tar.gz |
Fix contigmalloc() and contigmalloc1() arguments.
Diffstat (limited to 'sys/vm/vm_page.c')
-rw-r--r-- | sys/vm/vm_page.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/vm/vm_page.c b/sys/vm/vm_page.c index 68b9d0f..18b4518 100644 --- a/sys/vm/vm_page.c +++ b/sys/vm/vm_page.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)vm_page.c 7.4 (Berkeley) 5/7/91 - * $Id: vm_page.c,v 1.80 1997/09/01 03:17:23 bde Exp $ + * $Id: vm_page.c,v 1.81 1997/09/13 15:04:52 peter Exp $ */ /* @@ -1251,7 +1251,7 @@ vm_page_test_dirty(m) void * contigmalloc1(size, type, flags, low, high, alignment, boundary, map) unsigned long size; /* should be size_t here and for malloc() */ - int type; + struct malloc_type *type; int flags; unsigned long low; unsigned long high; @@ -1436,7 +1436,7 @@ again1: void * contigmalloc(size, type, flags, low, high, alignment, boundary) unsigned long size; /* should be size_t here and for malloc() */ - int type; + struct malloc_type *type; int flags; unsigned long low; unsigned long high; |