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/seccomp-build.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sandbox/seccomp/seccomp-build.c') diff --git a/sandbox/seccomp/seccomp-build.c b/sandbox/seccomp/seccomp-build.c index 4b2114f4..9423e78f 100644 --- a/sandbox/seccomp/seccomp-build.c +++ b/sandbox/seccomp/seccomp-build.c @@ -28,7 +28,7 @@ struct f_syscall_act { #define LEN(arr) (sizeof(arr) / sizeof((arr)[0])) #define SECCOMP_RULESET_ADD(ruleset) do { \ - if (opts & F_VERBOSE) F_println("adding seccomp ruleset \"" #ruleset "\""); \ + if (opts & F_VERBOSE) f_println("adding seccomp ruleset \"" #ruleset "\""); \ for (int i = 0; i < LEN(ruleset); i++) { \ assert(ruleset[i].m_errno == EPERM || ruleset[i].m_errno == ENOSYS); \ \ -- cgit v1.3.1