fix duplicate variable in example

Signed-off-by: varun-r-mallya <varunrmallya@gmail.com>
This commit is contained in:
2025-10-08 05:18:49 +05:30
parent 976af290af
commit 8a69e05ee2

View File

@ -10,7 +10,7 @@ def hello_world(ctx: c_void_p) -> c_int64:
@bpf
@section("kprobe/do_unlinkat")
def hello_world(ctx: c_void_p) -> c_int64:
def hello_world2(ctx: c_void_p) -> c_int64:
print("Hello, World!")
return c_int64(0)