Update volatility3/framework/layers/qemu.py

Fix typo courtesy of @digitalisx

Co-authored-by: Donghyun Kim <digitalisx99@gmail.com>
This commit is contained in:
ikelos
2022-05-23 01:48:07 +01:00
committed by GitHub
co-authored by Donghyun Kim
parent 7ce9511748
commit 6276b98400
+1 -1
View File
@@ -145,7 +145,7 @@ class QemuSuspendLayer(segmented.NonLinearlySegmentedLayer):
if size_array.get(b'pc.ram', highest_possible_maximum) < self._pci_hole_minimum:
# Turns off the pci_hole if it's not supposed to be there
vollog.debug(
f"QEVM tunrning off PCI hole due to small image size: 0x{size_array.get(b'pc.ram'):x} < 0x{self._pci_hole_minimum:x}")
f"QEVM turning off PCI hole due to small image size: 0x{size_array.get(b'pc.ram'):x} < 0x{self._pci_hole_minimum:x}")
self._pci_hole_start, self._pci_hole_end = 0, 0
if flags & (self.SEGMENT_FLAG_COMPRESS | self.SEGMENT_FLAG_PAGE):