Indent
authorJagger <robert@swiecki.net>
Sun, 8 May 2016 01:36:31 +0000 (03:36 +0200)
committerJagger <robert@swiecki.net>
Sun, 8 May 2016 01:36:31 +0000 (03:36 +0200)
subproc.c

index cde304848000b69ee20889952cff418b289a351b..b79e09b10ae2eb198c1882b7516c459d58a1645e 100644 (file)
--- a/subproc.c
+++ b/subproc.c
@@ -183,12 +183,15 @@ static void subprocSeccompViolation(struct nsjconf_t *nsjconf, siginfo_t * si)
 
        int sc;
        unsigned long arg1, arg2, arg3, arg4, arg5, arg6, sp, pc;
-       if (sscanf(buf, "%d %lx %lx %lx %lx %lx %lx %lx %lx", &sc, &arg1, &arg2, &arg3, &arg4, &arg5, &arg6, &sp, &pc) != 9) {
+       if (sscanf
+           (buf, "%d %lx %lx %lx %lx %lx %lx %lx %lx", &sc, &arg1, &arg2, &arg3, &arg4, &arg5,
+            &arg6, &sp, &pc) != 9) {
                return;
        }
 
        LOG_W
-           ("Syscall number: %d, Arguments: %lx, %lx, %lx, %lx, %lx, %lx, SP: %lx, PC: %lx", sc, arg1, arg2, arg3, arg4, arg5, arg6, sp, pc);
+           ("Syscall number: %d, Arguments: %lx, %lx, %lx, %lx, %lx, %lx, SP: %lx, PC: %lx", sc,
+            arg1, arg2, arg3, arg4, arg5, arg6, sp, pc);
 }
 
 int subprocReap(struct nsjconf_t *nsjconf)