mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 23:02:01 +00:00
Fix warning on MacOSX
This commit is contained in:
parent
08acc75a1a
commit
a248451e66
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,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
|
||||
|
|
Loading…
Reference in a new issue