summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPaul Moore <paul@paul-moore.com>2019-03-01 17:03:08 -0500
committerPaul Moore <paul@paul-moore.com>2019-03-01 17:03:08 -0500
commit7bbba09c81e1ddf74e863cc14d31ad1dbd747475 (patch)
treea9cb10d3c3dbd2bf20181237bf9c31cab1629211 /include
parent80a987d6f8d0152def07fa90ace6417d56eea741 (diff)
downloadlibseccomp-7bbba09c81e1ddf74e863cc14d31ad1dbd747475.tar.gz
style: fix a 80-char line width issue
I had made this fix earlier when applying a patch, but forgot to update the patch. Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'include')
-rw-r--r--include/seccomp.h.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/seccomp.h.in b/include/seccomp.h.in
index b28e76e..118d2fd 100644
--- a/include/seccomp.h.in
+++ b/include/seccomp.h.in
@@ -207,8 +207,10 @@ struct scmp_arg_cmp {
_SCMP_MACRO_DISPATCHER_IMPL2(func, nargs)
#define _SCMP_MACRO_DISPATCHER_IMPL2(func, nargs) \
func ## nargs
-#define _SCMP_CMP32_1(x, y, z) SCMP_CMP64(x, y, (uint32_t)(z))
-#define _SCMP_CMP32_2(x, y, z, q) SCMP_CMP64(x, y, (uint32_t)(z), (uint32_t)(q))
+#define _SCMP_CMP32_1(x, y, z) \
+ SCMP_CMP64(x, y, (uint32_t)(z))
+#define _SCMP_CMP32_2(x, y, z, q) \
+ SCMP_CMP64(x, y, (uint32_t)(z), (uint32_t)(q))
/**
* Specify a 64-bit argument comparison struct for use in declaring rules