From b03924836e9b8ebc16db2d87ef25e8d6617db3f3 Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Thu, 22 Jan 2026 03:17:41 +0530 Subject: [PATCH] docs: remove c_int64 helper usage in return statement --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index f48e058..62d95c5 100644 --- a/docs/index.md +++ b/docs/index.md @@ -27,7 +27,7 @@ from ctypes import c_void_p, c_int64 @section("tracepoint/syscalls/sys_enter_execve") def hello_world(ctx: c_void_p) -> c_int64: print("Hello, World!") - return c_int64(0) + return 0 @bpf @bpfglobal