From: Robert Swiecki Date: Thu, 19 Oct 2017 00:24:34 +0000 (+0200) Subject: make indent X-Git-Tag: 2.2~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=123ef0b46b73b9d2bc77b9992a4372dded3b6b0e;p=platform%2Fupstream%2Fnsjail.git make indent --- diff --git a/subproc.c b/subproc.c index df229be..e9f288f 100644 --- 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;