summaryrefslogtreecommitdiffstats
path: root/printf.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2021-06-02 14:09:18 -0400
committerTavian Barnes <tavianator@tavianator.com>2021-06-02 14:09:18 -0400
commitea6155677e0f466d05a0027fdbe29827f4a08c2c (patch)
treed2b8ab2d6f8921d6e5ad29b4fb58368533a0c02b /printf.c
parent69a5227098b87b048a90ceb1ca7b169c02ba151e (diff)
downloadbfs-ea6155677e0f466d05a0027fdbe29827f4a08c2c.tar.xz
Enable -Wimplicit-fallthrough
Diffstat (limited to 'printf.c')
-rw-r--r--printf.c2
1 files changed, 1 insertions, 1 deletions
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)) {