From: Todd C. Miller Date: Mon, 25 Apr 2016 15:58:32 +0000 (-0600) Subject: style fix; fork_cmnd should start on a new line X-Git-Tag: SUDO_1_8_17^2~131 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3e9702580ef3328f6de23eeef329a4db519ed271;p=sudo style fix; fork_cmnd should start on a new line --- diff --git a/src/exec.c b/src/exec.c index 1ceb99bb5..e10a567ab 100644 --- a/src/exec.c +++ b/src/exec.c @@ -80,7 +80,8 @@ static void handler_user_only(int s, siginfo_t *info, void *context); * Fork and execute a command, returns the child's pid. * Sends errno back on sv[1] if execve() fails. */ -static int fork_cmnd(struct command_details *details, int sv[2]) +static int +fork_cmnd(struct command_details *details, int sv[2]) { struct command_status cstat; sigaction_t sa;