mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 16:10:29 +00:00
- Fix a typo: set a value, not a bit.
svn path=/trunk/; revision=39937
This commit is contained in:
parent
084068b86a
commit
6965eb3bd8
1 changed files with 1 additions and 1 deletions
|
@ -1121,7 +1121,7 @@ MmInitGlobalKernelPageDirectory(VOID)
|
|||
// Setup template
|
||||
//
|
||||
HyperTemplatePte.u.Long = (PA_PRESENT | PA_READWRITE | PA_DIRTY | PA_ACCESSED);
|
||||
if (Ke386GlobalPagesEnabled) HyperTemplatePte.u.Long |= PA_BIT_GLOBAL;
|
||||
if (Ke386GlobalPagesEnabled) HyperTemplatePte.u.Long |= PA_GLOBAL;
|
||||
|
||||
for (i = ADDR_TO_PDE_OFFSET(MmSystemRangeStart); i < 1024; i++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue