From f2b976709820a25c8b4a43a918377875366d8099 Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Sun, 29 Mar 2026 13:11:44 +0530 Subject: [PATCH] Core: Fix args in helper/printk_formatter --- pythonbpf/helper/printk_formatter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pythonbpf/helper/printk_formatter.py b/pythonbpf/helper/printk_formatter.py index 4530662..01a1707 100644 --- a/pythonbpf/helper/printk_formatter.py +++ b/pythonbpf/helper/printk_formatter.py @@ -41,7 +41,7 @@ def handle_fstring_print( fmt_parts, exprs, local_sym_tab, - compilation_context.struct_sym_tab, + compilation_context.structs_sym_tab, ) else: raise NotImplementedError(f"Unsupported f-string value type: {type(value)}") @@ -60,7 +60,7 @@ def handle_fstring_print( compilation_context.module, builder, local_sym_tab, - compilation_context.struct_sym_tab, + compilation_context.structs_sym_tab, ) args.append(arg_value)