mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-13 07:57:23 +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);
|
opStackBase[opStackOfs + 1] = savedVM->systemCall(args);
|
||||||
#else
|
#else
|
||||||
data[0] = ~syscallNum;
|
data[0] = ~syscallNum;
|
||||||
opStackBase[opStackOfs + 1] = savedVM->systemCall(data);
|
opStackBase[opStackOfs + 1] = savedVM->systemCall((intptr_t *) data);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue