ntdll: Add missing parameters to syscall call.

This commit is contained in:
Daniel Jelinski 2012-05-29 21:49:35 +02:00 committed by Alexandre Julliard
parent bb23d63663
commit 6ec731b65c

View File

@ -1188,7 +1188,7 @@ ULONG WINAPI NtGetCurrentProcessorNumber(void)
ULONG processor;
#if defined(__linux__) && defined(__NR_getcpu)
int res = syscall(__NR_getcpu, &processor);
int res = syscall(__NR_getcpu, &processor, NULL, NULL);
if (res != -1) return processor;
#endif