From 57b7efb0d5b16fe9d2c19b45fd240fe552bb5c36 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 10 Apr 2018 01:20:26 +0200 Subject: ash: trivial code shrink function old new delta parse_command 1677 1674 -3 Signed-off-by: Denys Vlasenko --- shell/ash.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'shell/ash.c') 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) *vpp = NULL; *rpp = NULL; n = stzalloc(sizeof(struct ncmd)); - n->type = NCMD; + if (NCMD != 0) + n->type = NCMD; n->ncmd.linno = savelinno; n->ncmd.args = args; n->ncmd.assign = vars; -- cgit v1.2.3