aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 1e6df6284..421272971 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -1484,7 +1484,7 @@ static void pseudo_exec_argv(nommu_save_t *nommu_save, char **argv, int assignme
if (!argv[assignment_cnt])
_exit(EXIT_SUCCESS);
- new_env = expand_assignments(argv, assignment_cnt);
+ new_env = expand_assignments(argv, assignment_cnt);
#if BB_MMU
putenv_all(new_env);
free(new_env); /* optional */