From bd77051dc34993b41f7d3fa2eda93ffacb8cfdb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 17 Oct 2003 14:35:29 +0000 Subject: [PATCH] Changes due to renaming of vm_translation_map_get_pgdir() to i386_*(). git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5074 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/core/arch/x86/arch_vm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/kernel/core/arch/x86/arch_vm.c b/src/kernel/core/arch/x86/arch_vm.c index dcb8a47b9f..d72eb0a47f 100755 --- a/src/kernel/core/arch/x86/arch_vm.c +++ b/src/kernel/core/arch/x86/arch_vm.c @@ -2,15 +2,15 @@ ** Copyright 2001, Travis Geiselbrecht. All rights reserved. ** Distributed under the terms of the NewOS License. */ + + +#include #include #include #include #include #include #include -#include -#include -#include #include #include @@ -72,6 +72,6 @@ arch_vm_init_endvm(kernel_args *ka) void arch_vm_aspace_swap(vm_address_space *aspace) { - i386_swap_pgdir(vm_translation_map_get_pgdir(&aspace->translation_map)); + i386_swap_pgdir((addr_t)i386_translation_map_get_pgdir(&aspace->translation_map)); }