diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-11-22 09:33:49 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-12-18 15:37:20 -0500 |
commit | a85fc263a89fb89bc8b2a8166747660a177b1773 (patch) | |
tree | 128645d8fb4bdfe0829420c132d8f319bc319a14 /src/opt.c | |
parent | 5b38f658ee42bef05cecb6cadec65b25d9e94993 (diff) | |
download | bfs-a85fc263a89fb89bc8b2a8166747660a177b1773.tar.xz |
config: s/attr_format/attr_printf/
Diffstat (limited to 'src/opt.c')
-rw-r--r-- | src/opt.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -305,7 +305,7 @@ struct opt_state { }; /** Log an optimization. */ -attr(format(3, 4)) +attr(printf(3, 4)) static bool opt_debug(const struct opt_state *state, int level, const char *format, ...) { bfs_assert(state->ctx->optlevel >= level); @@ -321,7 +321,7 @@ static bool opt_debug(const struct opt_state *state, int level, const char *form } /** Warn about an expression. */ -attr(format(3, 4)) +attr(printf(3, 4)) static void opt_warning(const struct opt_state *state, const struct bfs_expr *expr, const char *format, ...) { if (bfs_expr_warning(state->ctx, expr)) { va_list args; |