From e0251a05bf5175bbe699bb4d5d7da0c480cec11f Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Fri, 23 Jan 2026 03:17:19 +0530 Subject: [PATCH] docs: remove redundant c_int64 calls from quickstart --- docs/getting-started/quickstart.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/quickstart.md b/docs/getting-started/quickstart.md index c431048..5196728 100644 --- a/docs/getting-started/quickstart.md +++ b/docs/getting-started/quickstart.md @@ -18,7 +18,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 @@ -172,7 +172,7 @@ Kprobes allow you to attach to any kernel function: @section("kprobe/do_sys_open") def trace_open(ctx: c_void_p) -> c_int64: print("File is being opened") - return c_int64(0) + return 0 ``` ### XDP (eXpress Data Path)