diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-05-10 15:44:59 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-05-10 15:44:59 -0400 |
commit | 87d8d5928325f951f40b5f87292a17586b85943b (patch) | |
tree | fdfab308274a7046444a8a238baa274153031c12 /src/printf.c | |
parent | 2d6d2f2cf838dc459bc1ef27476a26af5d82a53f (diff) | |
download | bfs-87d8d5928325f951f40b5f87292a17586b85943b.tar.xz |
config: s/BFS_FALLTHROUGH/fallthru/
Diffstat (limited to 'src/printf.c')
-rw-r--r-- | src/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/printf.c b/src/printf.c index 726d54d..454fbee 100644 --- a/src/printf.c +++ b/src/printf.c @@ -680,7 +680,7 @@ int bfs_printf_parse(const struct bfs_ctx *ctx, struct bfs_expr *expr, const cha case '0': case '+': must_be_numeric = true; - BFS_FALLTHROUGH; + fallthru; case ' ': case '-': if (strchr(directive.str, c)) { |