diff --git a/decompiler/structures/pseudo/expressions.py b/decompiler/structures/pseudo/expressions.py index cdf91b2d..268eeb05 100644 --- a/decompiler/structures/pseudo/expressions.py +++ b/decompiler/structures/pseudo/expressions.py @@ -608,9 +608,9 @@ def __hash__(self): return hash(tuple(sorted(self.value.items()))) def __str__(self) -> str: - """Return a trivial string representation of the struct.""" + """Return a string representation of the struct""" - return f"StructConstant()" + return str(self.value) def __iter__(self) -> Iterator[Expression]: yield from self.value.values()