Skip to content

Commit 4a528d5

Browse files
dgmcdonaikelos
authored andcommitted
Shorten suffix
1 parent 0882fd0 commit 4a528d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

volatility3/cli/volshell/generic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ def _display_value(self, value: Any) -> str:
629629
else:
630630
suffix = ""
631631
except exceptions.SymbolError as exc:
632-
suffix = f" (pointer to {exc.symbol_name} - unknown size)"
632+
suffix = f" (unknown sized {exc.symbol_name})"
633633
return f"{hex(value)}{suffix}"
634634
elif isinstance(value, objects.PrimitiveObject):
635635
return repr(value)

0 commit comments

Comments
 (0)