make indent
authorRobert Swiecki <robert@swiecki.net>
Thu, 19 Oct 2017 00:24:34 +0000 (02:24 +0200)
committerRobert Swiecki <robert@swiecki.net>
Thu, 19 Oct 2017 00:24:34 +0000 (02:24 +0200)
subproc.c

index df229be4d7f45688c6dcd58ab949698bd1b57e22..e9f288f67be34e035bfb74e0d23bd2d449e23f27 100644 (file)
--- a/subproc.c
+++ b/subproc.c
@@ -398,8 +398,9 @@ static bool subprocInitParent(struct nsjconf_t* nsjconf, pid_t pid, int pipefd)
        return true;
 }
 
-/* Will be used inside the child process only, so it's save to have it in BSS */
-static uint8_t subprocCloneStack[128 * 1024] __attribute__(( aligned(__BIGGEST_ALIGNMENT__ ))); /* 128 KiB */
+/* Will be used inside the child process only, so it's safe to have it in BSS */
+static uint8_t subprocCloneStack[128 * 1024]
+    __attribute__((aligned(__BIGGEST_ALIGNMENT__))); /* 128 KiB */
 /* Cannot be on the stack, as the child's stack pointer will change after clone() */
 static __thread jmp_buf env;