aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 1ad61e54e..9af7f5105 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -1119,8 +1119,7 @@ static void pseudo_exec(struct child_prog *child)
1119 1119
1120 /* Count argc for use in a second... */ 1120 /* Count argc for use in a second... */
1121 for (argc_l = 0; *argv_l; argv_l++, argc_l++) 1121 for (argc_l = 0; *argv_l; argv_l++, argc_l++)
1122 /**/; 1122 continue;
1123 optind = 1;
1124 debug_printf("running applet %s\n", name); 1123 debug_printf("running applet %s\n", name);
1125 run_applet_and_exit(name, argc_l, child->argv); 1124 run_applet_and_exit(name, argc_l, child->argv);
1126 } 1125 }