diff options
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/nt32/syscall_disp.c | 2 | ||||
-rw-r--r-- | src/arch/nt64/syscall_disp.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/nt32/syscall_disp.c b/src/arch/nt32/syscall_disp.c index 9ea5966..31baddb 100644 --- a/src/arch/nt32/syscall_disp.c +++ b/src/arch/nt32/syscall_disp.c @@ -8,7 +8,7 @@ extern struct __psx_vtbl * __psx_vtbl; void __unmapself(void * base, size_t size) { - __psx_vtbl->unmapself(base,(void *)size); + __psx_vtbl->unmapself(base,size); } uintptr_t __syscall_disp(long n, diff --git a/src/arch/nt64/syscall_disp.c b/src/arch/nt64/syscall_disp.c index 9ea5966..31baddb 100644 --- a/src/arch/nt64/syscall_disp.c +++ b/src/arch/nt64/syscall_disp.c @@ -8,7 +8,7 @@ extern struct __psx_vtbl * __psx_vtbl; void __unmapself(void * base, size_t size) { - __psx_vtbl->unmapself(base,(void *)size); + __psx_vtbl->unmapself(base,size); } uintptr_t __syscall_disp(long n, |