aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index a43b65680..a25d14de0 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -4799,7 +4799,8 @@ cmdputs(const char *s)
4799 str = "${"; 4799 str = "${";
4800 goto dostr; 4800 goto dostr;
4801 case CTLENDVAR: 4801 case CTLENDVAR:
4802 str = "\"}" + !(quoted & 1); 4802 str = "\"}";
4803 str += !(quoted & 1);
4803 quoted >>= 1; 4804 quoted >>= 1;
4804 subtype = 0; 4805 subtype = 0;
4805 goto dostr; 4806 goto dostr;