aboutsummaryrefslogtreecommitdiff
path: root/lash.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-03-23 17:06:01 +0000
committerEric Andersen <andersen@codepoet.org>2001-03-23 17:06:01 +0000
commit82ab8da24595fced332faf947cc63497216b09db (patch)
treee71839ff4cf773723aee9b96cd8876c224b577fa /lash.c
parent8ffaf8d139a51b33497a3e80804d7bf1f60875e6 (diff)
downloadbusybox-82ab8da24595fced332faf947cc63497216b09db.tar.gz
-Wshadow sh fix from Jeff Garzik
Diffstat (limited to 'lash.c')
-rw-r--r--lash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lash.c b/lash.c
index 5a59c018a..e33fd369c 100644
--- a/lash.c
+++ b/lash.c
@@ -1560,9 +1560,9 @@ static int pseudo_exec(struct child_prog *child)
#endif
{
- char** argv=child->argv;
+ char** argv_l=child->argv;
int argc_l;
- for(argc_l=0;*argv!=NULL; argv++, argc_l++);
+ for(argc_l=0;*argv_l!=NULL; argv_l++, argc_l++);
optind = 1;
run_applet_by_name(name, argc_l, child->argv);
}