diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-19 13:24:07 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-19 13:24:07 +0200 |
commit | 3b3ccdc5bc530e824a55ebc8d57c34f0ca6a30c9 (patch) | |
tree | 516254c4970028d0c03c0a04cc101074ca691b80 | |
parent | 8bc7f2c5aad9506a6dcd862a2f57d88b5c001a3e (diff) | |
download | busybox-3b3ccdc5bc530e824a55ebc8d57c34f0ca6a30c9.tar.gz |
hush: remove superfluous assignment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-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 cbb0ce69c..69a86b14c 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 |