From f885dede9b10c06004be0eac19d80b7bc718100a Mon Sep 17 00:00:00 2001 From: Ophestra Date: Mon, 7 Apr 2025 04:07:20 +0900 Subject: sandbox/seccomp: unexport println wrapper This is an implementation detail that was exported for the bwrap argument builder. The removal of that package allows it to be unexported. Signed-off-by: Ophestra --- sandbox/seccomp/output.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sandbox/seccomp/output.go') diff --git a/sandbox/seccomp/output.go b/sandbox/seccomp/output.go index d583c9ee..db81feb9 100644 --- a/sandbox/seccomp/output.go +++ b/sandbox/seccomp/output.go @@ -22,8 +22,8 @@ func GetOutput() func(v ...any) { } } -//export F_println -func F_println(v *C.char) { +//export f_println +func f_println(v *C.char) { if fp := printlnP.Load(); fp != nil { (*fp)(C.GoString(v)) } -- cgit v1.3.1