diff --git a/examples/kprobes.py b/examples/kprobes.py index 3796d03..bb0a678 100644 --- a/examples/kprobes.py +++ b/examples/kprobes.py @@ -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)