]> git.proxmox.com Git - mirror_libseccomp.git/commitdiff
style: fix a 80-char line width issue
authorPaul Moore <paul@paul-moore.com>
Fri, 1 Mar 2019 22:03:08 +0000 (17:03 -0500)
committerPaul Moore <paul@paul-moore.com>
Fri, 1 Mar 2019 22:03:08 +0000 (17:03 -0500)
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>
include/seccomp.h.in

index b28e76ec804e33b3010ec21145d53c78a105cfe4..118d2fdadbf0c579a40c9662c70e7b5a94f4364a 100644 (file)
@@ -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