Skip to content

Commit f2b9767

Browse files
committed
Core: Fix args in helper/printk_formatter
1 parent 0e087b9 commit f2b9767

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythonbpf/helper/printk_formatter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def handle_fstring_print(
4141
fmt_parts,
4242
exprs,
4343
local_sym_tab,
44-
compilation_context.struct_sym_tab,
44+
compilation_context.structs_sym_tab,
4545
)
4646
else:
4747
raise NotImplementedError(f"Unsupported f-string value type: {type(value)}")
@@ -60,7 +60,7 @@ def handle_fstring_print(
6060
compilation_context.module,
6161
builder,
6262
local_sym_tab,
63-
compilation_context.struct_sym_tab,
63+
compilation_context.structs_sym_tab,
6464
)
6565
args.append(arg_value)
6666

0 commit comments

Comments
 (0)