From a1cce942064b62a2f238383d61c331b14ab764eb Mon Sep 17 00:00:00 2001 From: vda Date: Tue, 10 Apr 2007 15:42:06 +0000 Subject: style fixes. No code changes. git-svn-id: svn://busybox.net/trunk/busybox@18381 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- shell/lash.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'shell/lash.c') diff --git a/shell/lash.c b/shell/lash.c index 192900bb6..f9d9deb62 100644 --- a/shell/lash.c +++ b/shell/lash.c @@ -582,7 +582,7 @@ static int setup_redirects(struct child_prog *prog, int squirrel[]) if (openfd != redir->fd) { if (squirrel && redir->fd < 3) { squirrel[redir->fd] = dup(redir->fd); - fcntl (squirrel[redir->fd], F_SETFD, FD_CLOEXEC); + fcntl(squirrel[redir->fd], F_SETFD, FD_CLOEXEC); } dup2(openfd, redir->fd); close(openfd); @@ -763,7 +763,7 @@ static int expand_arguments(char *command) free(tmpcmd); /* Free mem allocated by strsep_space */ if (retval == GLOB_NOSPACE) { /* Mem may have been allocated... */ - globfree (&expand_result); + globfree(&expand_result); bb_error_msg(out_of_space); return FALSE; } else if (retval != 0) { @@ -786,7 +786,7 @@ static int expand_arguments(char *command) strcat(command+total_length, expand_result.gl_pathv[i]); total_length += length; } - globfree (&expand_result); + globfree(&expand_result); } } free(cmd_copy); @@ -1478,7 +1478,7 @@ static void setup_job_control(void) if (status == (shell_pgrp = getpgrp ())) { break; } - kill (- shell_pgrp, SIGTTIN); + kill(- shell_pgrp, SIGTTIN); } /* Ignore interactive and job-control signals. */ -- cgit v1.2.3-55-g6feb