Change function prototype to use endpoint_t instead of int

This commit is contained in:
Xiaoguang Sun
2013-04-22 23:50:45 +00:00
committed by Lionel Sambuc
parent 8a3677def0
commit 20e6c9329f
7 changed files with 28 additions and 28 deletions

View File

@@ -116,7 +116,7 @@ int vm_unmap(endpoint_t endpt, void *addr)
return _syscall(VM_PROC_NR, VM_SHM_UNMAP, &m);
}
unsigned long vm_getphys(int endpt, void *addr)
unsigned long vm_getphys(endpoint_t endpt, void *addr)
{
message m;
int r;