diff options
author | Denis Vlasenko | 2006-11-27 16:59:15 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-27 16:59:15 +0000 |
commit | 097c324f59e00182c9a2ca9e7a8b2fe06a078c6c (patch) | |
tree | 4817bcd854907cb2cd905780e54ea24faf1c80c5 /shell/ash.c | |
parent | d9e15f206840219bb0f39c912a42fdcf8cbcaed6 (diff) | |
download | busybox-097c324f59e00182c9a2ca9e7a8b2fe06a078c6c.zip busybox-097c324f59e00182c9a2ca9e7a8b2fe06a078c6c.tar.gz |
fix remaining survivors of the return(a) cleanup
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ exptilde(char *startp, char *p, int flag) 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; |