diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/hush.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c index 1e6df62..4212729 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 */ |