aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell/ash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 9bb8fd805..e1c6f95ea 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -10298,7 +10298,7 @@ ash_command_name(struct exe_state *e)
10298 if (index < ARRAY_SIZE(builtintab)) 10298 if (index < ARRAY_SIZE(builtintab))
10299 return builtintab[e->e_index++].name + 1; 10299 return builtintab[e->e_index++].name + 1;
10300 e->e_type++; 10300 e->e_type++;
10301 index = 0; 10301 index = -1;
10302 /* e->e_ptr = NULL; */ 10302 /* e->e_ptr = NULL; */
10303 /* fall through */ 10303 /* fall through */
10304 case 1: 10304 case 1:
@@ -10318,7 +10318,7 @@ ash_command_name(struct exe_state *e)
10318 } 10318 }
10319# if ENABLE_ASH_ALIAS 10319# if ENABLE_ASH_ALIAS
10320 e->e_type++; 10320 e->e_type++;
10321 index = 0; 10321 index = -1;
10322 e->e_ptr = NULL; 10322 e->e_ptr = NULL;
10323 /* fall through */ 10323 /* fall through */
10324 case 2: 10324 case 2: