diff options
author | Thilo Schulz <arny@ats.s.bawue.de> | 2011-08-10 21:21:54 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-10 23:27:03 +0000 |
commit | 6534a9e3d74daeb07236f759b0a427ed4cb542f9 (patch) | |
tree | d126d30031450a9411a975a1db06ba73eea09784 /src/qcommon | |
parent | 8d8d5286c4f18d6c419d5392802b5f0ed1abae14 (diff) |
Fix warning on MacOSX
Diffstat (limited to 'src/qcommon')
-rw-r--r-- | src/qcommon/vm_x86.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcommon/vm_x86.c b/src/qcommon/vm_x86.c index dbef2051..749115a2 100644 --- a/src/qcommon/vm_x86.c +++ b/src/qcommon/vm_x86.c @@ -456,7 +456,7 @@ static void DoSyscall(void) opStackBase[opStackOfs + 1] = savedVM->systemCall(args); #else data[0] = ~syscallNum; - opStackBase[opStackOfs + 1] = savedVM->systemCall(data); + opStackBase[opStackOfs + 1] = savedVM->systemCall((intptr_t *) data); #endif } else |