diff options
author | Denis Vlasenko | 2007-04-16 22:32:04 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-04-16 22:32:04 +0000 |
commit | ac678ec2f127fc02a93fff2c164e0b13a94a6abf (patch) | |
tree | f1354d1d4e3ca29b1fd77698d45791e61fd7a8b1 /shell/hush.c | |
parent | 17e3c34aa7abe42aa604234235338e2b8087b8a0 (diff) | |
download | busybox-ac678ec2f127fc02a93fff2c164e0b13a94a6abf.zip busybox-ac678ec2f127fc02a93fff2c164e0b13a94a6abf.tar.gz |
style fixes, no code changes
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c index 0b5e2a5..9489fb2 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -1953,7 +1953,8 @@ static int setup_redirect(struct p_context *ctx, int fd, redir_type style, return 0; } -static struct pipe *new_pipe(void) { +static struct pipe *new_pipe(void) +{ struct pipe *pi; pi = xmalloc(sizeof(struct pipe)); pi->num_progs = 0; |