diff options
Diffstat (limited to '')
-rw-r--r-- | include/vm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vm.h b/include/vm.h index 6c4441f..8eac999 100644 --- a/include/vm.h +++ b/include/vm.h @@ -432,12 +432,12 @@ int vm_map(pde_t *pdir, void *va, uint32_t pa, uint32_t size, int perm); ** hierarchy. We assume that the "new" page directory exists and ** the system portions of it should not be touched. ** -** @param old Existing page directory ** @param new New page directory +** @param old Existing page directory ** ** @return status of the duplication attempt */ -int vm_uvmdup(pde_t *old, pde_t *new); +int vm_uvmdup(pde_t *new, pde_t *old); #endif /* !ASM_SRC */ |