From ea6155677e0f466d05a0027fdbe29827f4a08c2c Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Wed, 2 Jun 2021 14:09:18 -0400 Subject: Enable -Wimplicit-fallthrough --- printf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'printf.c') diff --git a/printf.c b/printf.c index 4a2c65a..26c19a7 100644 --- a/printf.c +++ b/printf.c @@ -630,7 +630,7 @@ struct bfs_printf *bfs_printf_parse(const struct bfs_ctx *ctx, const char *forma case '0': case '+': must_be_numeric = true; - // Fallthrough + fallthrough; case ' ': case '-': if (strchr(directive->str, c)) { -- cgit v1.2.3