aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell/ash.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 24958c0fc..303542197 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -11662,7 +11662,8 @@ simplecmd(void)
11662 *vpp = NULL; 11662 *vpp = NULL;
11663 *rpp = NULL; 11663 *rpp = NULL;
11664 n = stzalloc(sizeof(struct ncmd)); 11664 n = stzalloc(sizeof(struct ncmd));
11665 n->type = NCMD; 11665 if (NCMD != 0)
11666 n->type = NCMD;
11666 n->ncmd.linno = savelinno; 11667 n->ncmd.linno = savelinno;
11667 n->ncmd.args = args; 11668 n->ncmd.args = args;
11668 n->ncmd.assign = vars; 11669 n->ncmd.assign = vars;