aboutsummaryrefslogtreecommitdiffhomepage
path: root/sandbox/seccomp/seccomp-build.c
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-04-07 04:07:20 +0900
committerOphestra <cat@gensokyo.uk>2025-04-07 04:07:20 +0900
commitf885dede9b10c06004be0eac19d80b7bc718100a (patch)
tree3c3c625be4ae4cfd4de8d07e6aecf43a06f6be8f /sandbox/seccomp/seccomp-build.c
parente9a7cd526f4e5f0a8f7b18ad3682d2e3afbcb8ba (diff)
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 <cat@gensokyo.uk>
Diffstat (limited to 'sandbox/seccomp/seccomp-build.c')
-rw-r--r--sandbox/seccomp/seccomp-build.c2
1 files changed, 1 insertions, 1 deletions
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); \
\