From 41b49137a8d11183c0d13ea32527f58f9c1a3dec Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sat, 15 Nov 2025 16:53:10 +0900 Subject: .clang-format: do not limit line length This hard limit destroys readability in some places. Signed-off-by: Ophestra --- container/seccomp/libseccomp-helper.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'container/seccomp/libseccomp-helper.h') diff --git a/container/seccomp/libseccomp-helper.h b/container/seccomp/libseccomp-helper.h index 0fad2d4a..72e29771 100644 --- a/container/seccomp/libseccomp-helper.h +++ b/container/seccomp/libseccomp-helper.h @@ -1,7 +1,7 @@ #include #include -#if (SCMP_VER_MAJOR < 2) || (SCMP_VER_MAJOR == 2 && SCMP_VER_MINOR < 5) || \ +#if (SCMP_VER_MAJOR < 2) || (SCMP_VER_MAJOR == 2 && SCMP_VER_MINOR < 5) || \ (SCMP_VER_MAJOR == 2 && SCMP_VER_MINOR == 5 && SCMP_VER_MICRO < 1) #error This package requires libseccomp >= v2.5.1 #endif @@ -19,7 +19,8 @@ struct hakurei_syscall_rule { }; extern void *hakurei_scmp_allocate(uintptr_t f, size_t len); -int32_t hakurei_scmp_make_filter(int *ret_p, uintptr_t allocate_p, - uint32_t arch, uint32_t multiarch, - struct hakurei_syscall_rule *rules, - size_t rules_sz, hakurei_export_flag flags); \ No newline at end of file +int32_t hakurei_scmp_make_filter( + int *ret_p, uintptr_t allocate_p, + uint32_t arch, uint32_t multiarch, + struct hakurei_syscall_rule *rules, + size_t rules_sz, hakurei_export_flag flags); -- cgit v1.3.1