From ba868c7c27f114831dcd697b2eab3962f1b4595e Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Sun, 7 Jul 2019 17:42:31 +0100 Subject: [PATCH] Improve enumeration type naming. --- volatility/framework/symbols/intermed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/symbols/intermed.py b/volatility/framework/symbols/intermed.py index dbd27086f..714f849bc 100644 --- a/volatility/framework/symbols/intermed.py +++ b/volatility/framework/symbols/intermed.py @@ -402,7 +402,7 @@ class Version1Format(ISFormatTable): base_type = self.natives.get_type(curdict['base']) # The size isn't actually used, the base-type defines it. return objects.templates.ObjectTemplate( - type_name = 'Enumeration', + type_name = self.name + constants.BANG + enum_name, object_class = objects.Enumeration, base_type = base_type, choices = curdict['constants'])