diff options
Diffstat (limited to 'vm/vm_map.c')
-rw-r--r-- | vm/vm_map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/vm_map.c b/vm/vm_map.c index b1c1b4e0..249d18a4 100644 --- a/vm/vm_map.c +++ b/vm/vm_map.c @@ -1921,7 +1921,7 @@ vm_map_copy_steal_pages(vm_map_copy_t copy) * Page was not stolen, get a new * one and do the copy now. */ - while ((new_m = vm_page_grab(FALSE)) == VM_PAGE_NULL) { + while ((new_m = vm_page_grab()) == VM_PAGE_NULL) { VM_PAGE_WAIT((void(*)()) 0); } |