commit | 097c324f59e00182c9a2ca9e7a8b2fe06a078c6c | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Mon Nov 27 16:59:15 2006 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Mon Nov 27 16:59:15 2006 +0000 |
tree | 4817bcd854907cb2cd905780e54ea24faf1c80c5 | |
parent | d9e15f206840219bb0f39c912a42fdcf8cbcaed6 [diff] [blame] |
fix remaining survivors of the return(a) cleanup
diff --git a/shell/ash.c b/shell/ash.c index 0704353..3a9998f 100644 --- a/shell/ash.c +++ b/shell/ash.c
@@ -4804,9 +4804,9 @@ while ((c = *++p) != '\0') { switch(c) { case CTLESC: - return (startp); + return startp; case CTLQUOTEMARK: - return (startp); + return startp; case ':': if (flag & EXP_VARTILDE) goto done;