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 df229be..e9f288f 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;