aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-10-19 13:24:07 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-10-19 13:24:07 +0200
commit3b3ccdc5bc530e824a55ebc8d57c34f0ca6a30c9 (patch)
tree516254c4970028d0c03c0a04cc101074ca691b80 /shell
parent8bc7f2c5aad9506a6dcd862a2f57d88b5c001a3e (diff)
downloadbusybox-3b3ccdc5bc530e824a55ebc8d57c34f0ca6a30c9.tar.gz
hush: remove superfluous assignment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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 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