aboutsummaryrefslogtreecommitdiffstats
path: root/code/ui/ui_syscalls.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/ui/ui_syscalls.c')
-rw-r--r--code/ui/ui_syscalls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/ui/ui_syscalls.c b/code/ui/ui_syscalls.c
index 2a11213..77c14eb 100644
--- a/code/ui/ui_syscalls.c
+++ b/code/ui/ui_syscalls.c
@@ -28,9 +28,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#error "Do not use in VM build"
#endif
-static long (QDECL *syscall)( long arg, ... ) = (long (QDECL *)( long, ...))-1;
+static intptr_t (QDECL *syscall)( intptr_t arg, ... ) = (intptr_t (QDECL *)( intptr_t, ...))-1;
-void dllEntry( long (QDECL *syscallptr)( long arg,... ) ) {
+void dllEntry( intptr_t (QDECL *syscallptr)( intptr_t arg,... ) ) {
syscall = syscallptr;
}