aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 9a9b5bb91..e0c562621 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -2037,7 +2037,7 @@ static const char *next_brace_sub(const char *cp)
break;
cp++;
continue;
- }
+ }
/*{*/ if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
break;
if (*cp++ == '{') /*}*/