diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-23 17:06:01 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-23 17:06:01 +0000 |
commit | 82ab8da24595fced332faf947cc63497216b09db (patch) | |
tree | e71839ff4cf773723aee9b96cd8876c224b577fa /sh.c | |
parent | 8ffaf8d139a51b33497a3e80804d7bf1f60875e6 (diff) |
-Wshadow sh fix from Jeff Garzik
Diffstat (limited to 'sh.c')
-rw-r--r-- | sh.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); } |