diff options
author | Denis Vlasenko | 2007-05-30 00:29:55 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-05-30 00:29:55 +0000 |
commit | 4b924f3a5c9c549c75deed8bdda2cbd82fd7f64b (patch) | |
tree | 7dfc507c1a7d14fb61d4fd0c68481e01b4a36ba1 /shell/hush.c | |
parent | 4ef7d3a2de3df27dde80a64987202f10aebfe925 (diff) | |
download | busybox-4b924f3a5c9c549c75deed8bdda2cbd82fd7f64b.zip busybox-4b924f3a5c9c549c75deed8bdda2cbd82fd7f64b.tar.gz |
whitespace fixes
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/hush.c b/shell/hush.c index 6844f06..7aad6e6 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -415,7 +415,7 @@ enum { run_list_level = 0 }; #define shell_ver (G.shell_ver ) #if ENABLE_FEATURE_SH_STANDALONE #define nofork_save (G.nofork_save ) -#endif +#endif #if ENABLE_HUSH_JOB #define toplevel_jb (G.toplevel_jb ) #endif @@ -1876,7 +1876,7 @@ static int run_pipe_real(struct pipe *pi) return -1; } -#ifndef debug_print_tree +#ifndef debug_print_tree static void debug_print_tree(struct pipe *pi, int lvl) { static const char *PIPE[] = { @@ -1929,7 +1929,7 @@ static void debug_print_tree(struct pipe *pi, int lvl) if (argv) while (*argv) { fprintf(stderr, " '%s'", *argv); argv++; - } + } fprintf(stderr, "\n"); prn++; } @@ -2114,7 +2114,7 @@ static int run_list_real(struct pipe *pi) * try "{ { sleep 10; echo DEEP; } & echo HERE; } &". * I'm NOT treating inner &'s as jobs */ #if ENABLE_HUSH_JOB - if (run_list_level == 1) + if (run_list_level == 1) insert_bg_job(pi); #endif rcode = EXIT_SUCCESS; |