diff options
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; |