mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
[KERNEL32]
Fix stupidness, spotted by Thomas svn path=/trunk/; revision=68140
This commit is contained in:
parent
1011d89eaa
commit
4bcdd47a49
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue