diff options
-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 cbb0ce6..69a86b1 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -6986,7 +6986,7 @@ static int FAST_FUNC builtin_cd(char **argv) static int FAST_FUNC builtin_exec(char **argv) { static const char pseudo_null_str[] = { SPECIAL_VAR_SYMBOL, SPECIAL_VAR_SYMBOL, '\0' }; - char **pp = argv; + char **pp; #if !BB_MMU nommu_save_t dummy; #endif |