Commit cccb533f authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

Drop explicit FALLTHROUGHs for consecutive cases

parent cee00761
...@@ -611,13 +611,9 @@ VSB_quote_pfx(struct vsb *s, const char *pfx, const void *v, int len, int how) ...@@ -611,13 +611,9 @@ VSB_quote_pfx(struct vsb *s, const char *pfx, const void *v, int len, int how)
(void)VSB_cat(s, "\\v"); (void)VSB_cat(s, "\\v");
break; break;
case '[': case '[':
/* FALLTHROUGH */
case ']': case ']':
/* FALLTHROUGH */
case '{': case '{':
/* FALLTHROUGH */
case '}': case '}':
/* FALLTHROUGH */
case '*': case '*':
if (how & VSB_QUOTE_GLOB) if (how & VSB_QUOTE_GLOB)
(void)VSB_putc(s, '\\'); (void)VSB_putc(s, '\\');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment