minor changes for readability

This commit is contained in:
Jack Wenger
2021-02-08 14:56:40 -05:00
parent a529aa846f
commit fa1c03d24a
2 changed files with 3 additions and 3 deletions
@@ -23,8 +23,8 @@ class Crashinfo(interfaces.plugins.PluginInterface):
]
def _generator(self, layer):
for seg in layer.mapping(0x0, layer.maximum_address, ignore_errors = True):
yield(0,(seg[0],seg[2],seg[1]))
for offset, length, mapped_offset in layer.mapping(0x0, layer.maximum_address, ignore_errors = True):
yield(0,(offset,length,mapped_offset))
def run(self):