fix small error in script

This commit is contained in:
jonschz 2024-10-13 10:38:41 +02:00
parent 63e42fc4ee
commit 17a771f993

View File

@ -216,7 +216,7 @@ def compare_function_stacks(udiff: CombinedDiffOutput, fn_symbol: SymbolsEntry):
warnings.error_map_not_bijective = True
# Show offsets from the debug symbols that we have not encountered in the diff
all_recomp_offsets = set(x.orig.offset for x in stack_pairs).union(
all_recomp_offsets = set(x.recomp.offset for x in stack_pairs).union(
stack_symbols.keys()
)