summaryrefslogtreecommitdiffstats
path: root/src/printf.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-08-09 12:39:22 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-08-09 12:39:22 -0400
commit9c74802117d97bdb55be08a954319e1b8733cb9d (patch)
treeb0d4f08d6d50e09a7085c6008fa7ad554e077fe2 /src/printf.c
parente747c913adee1ae915509985dbd5025018037336 (diff)
downloadbfs-9c74802117d97bdb55be08a954319e1b8733cb9d.tar.xz
prelude: s/fallthru/_fallthrough/ for consistency with other attributes
Diffstat (limited to 'src/printf.c')
-rw-r--r--src/printf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/printf.c b/src/printf.c
index d09d1ec..c57f4ca 100644
--- a/src/printf.c
+++ b/src/printf.c
@@ -706,7 +706,7 @@ int bfs_printf_parse(const struct bfs_ctx *ctx, struct bfs_expr *expr, const cha
case '+':
case ' ':
must_be_numeric = true;
- fallthru;
+ _fallthrough;
case '-':
if (strchr(fmt.str, c)) {
bfs_expr_error(ctx, expr);