Fix warning on MacOSX

This commit is contained in:
Thilo Schulz 2011-08-10 21:21:54 +00:00
parent 08acc75a1a
commit a248451e66

View file

@ -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