Layers: Fix typo in pae patch

This commit is contained in:
Mike Auty
2021-01-07 10:14:35 +00:00
parent 782e59694a
commit e108d8a5c4
+1 -1
View File
@@ -247,7 +247,7 @@ class IntelPAE(Intel):
_maxphyaddr = 40
_maxvirtaddr = 32
_structure = [('page directory pointer', 2, False), ('page directory', 9, True), ('page table', 9, True)]
_direct_metadata = collections.ChainMap({'pae', True}, Intel._direct_metadata)
_direct_metadata = collections.ChainMap({'pae': True}, Intel._direct_metadata)
class Intel32e(Intel):