fix: remove deref_to_depth on single depth pointers

This commit is contained in:
2025-11-27 22:59:34 +05:30
parent f135cdbcc0
commit de8c486461
4 changed files with 40 additions and 40 deletions

View File

@ -1,4 +1,4 @@
from pythonbpf import bpf, struct, section, bpfglobal
from pythonbpf import bpf, struct, section, bpfglobal, compile
from pythonbpf.helper import comm
from ctypes import c_void_p, c_int64
@ -26,3 +26,6 @@ def hello(ctx: c_void_p) -> c_int64:
@bpfglobal
def LICENSE() -> str:
return "GPL"
compile()