[KERNEL32]

Fix stupidness, spotted by Thomas

svn path=/trunk/; revision=68140
This commit is contained in:
Pierre Schweitzer 2015-06-14 18:54:57 +00:00
parent 1011d89eaa
commit 4bcdd47a49

View file

@ -314,7 +314,7 @@ GetNumaProcessorNode(IN UCHAR Processor,
/* Find ourselves */
Node = 0;
Proc = (1ULL << Processor) >> MAXIMUM_PROCESSORS;
Proc = 1ULL << Processor;
while ((Proc & NumaInformation.ActiveProcessorsAffinityMask[Node]) == 0ULL)
{
++Node;