We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0882fd0 commit 4a528d5Copy full SHA for 4a528d5
volatility3/cli/volshell/generic.py
@@ -629,7 +629,7 @@ def _display_value(self, value: Any) -> str:
629
else:
630
suffix = ""
631
except exceptions.SymbolError as exc:
632
- suffix = f" (pointer to {exc.symbol_name} - unknown size)"
+ suffix = f" (unknown sized {exc.symbol_name})"
633
return f"{hex(value)}{suffix}"
634
elif isinstance(value, objects.PrimitiveObject):
635
return repr(value)
0 commit comments