mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[KERNEL32]
Fix stupidness, spotted by Thomas svn path=/trunk/; revision=68140
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user