Fix return value in README example

This commit is contained in:
Pragyansh Chaturvedi
2025-11-30 04:29:31 +05:30
committed by GitHub
parent 01d234ac86
commit 0fd6bea211

View File

@ -97,7 +97,7 @@ def hello(ctx: c_void_p) -> c_int64:
return c_int64(0)
else:
hist.update(process_id, one)
return c_int64(0)
return 0
@bpf