diff options
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/hush.c b/shell/hush.c index 3012a1f73..ec38023ff 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -2151,7 +2151,7 @@ static char *expand_pseudo_dquoted(const char *str) | |||
2151 | * to be filled). This routine is extremely tricky: has to deal with | 2151 | * to be filled). This routine is extremely tricky: has to deal with |
2152 | * variables/parameters with whitespace, $* and $@, and constructs like | 2152 | * variables/parameters with whitespace, $* and $@, and constructs like |
2153 | * 'echo -$*-'. If you play here, you must run testsuite afterwards! */ | 2153 | * 'echo -$*-'. If you play here, you must run testsuite afterwards! */ |
2154 | static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask) | 2154 | static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask) |
2155 | { | 2155 | { |
2156 | /* or_mask is either 0 (normal case) or 0x80 - | 2156 | /* or_mask is either 0 (normal case) or 0x80 - |
2157 | * expansion of right-hand side of assignment == 1-element expand. | 2157 | * expansion of right-hand side of assignment == 1-element expand. |
@@ -3750,7 +3750,7 @@ static int checkjobs_and_fg_shell(struct pipe* fg_pipe) | |||
3750 | * backgrounded: cmd & { list } & | 3750 | * backgrounded: cmd & { list } & |
3751 | * subshell: ( list ) [&] | 3751 | * subshell: ( list ) [&] |
3752 | */ | 3752 | */ |
3753 | static int run_pipe(struct pipe *pi) | 3753 | static NOINLINE int run_pipe(struct pipe *pi) |
3754 | { | 3754 | { |
3755 | static const char *const null_ptr = NULL; | 3755 | static const char *const null_ptr = NULL; |
3756 | int i; | 3756 | int i; |