From 81807ace345ed692635910644672d7e8dd65165d Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Wed, 1 Oct 2025 23:59:07 +0530 Subject: [PATCH] Fix simple_string_print docstring --- pythonbpf/helper/helper_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonbpf/helper/helper_utils.py b/pythonbpf/helper/helper_utils.py index 4bb504f..adb766e 100644 --- a/pythonbpf/helper/helper_utils.py +++ b/pythonbpf/helper/helper_utils.py @@ -79,7 +79,7 @@ def get_flags_val(arg, builder, local_sym_tab): def simple_string_print(string_value, module, builder, func): - """Emit code for a simple string print statement.""" + """Prepare arguments for bpf_printk from a simple string value""" fmt_str = string_value + "\n\0" fmt_ptr = _create_format_string_global(fmt_str, func, module, builder)