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/eval.c | |
parent | 5b38f658ee42bef05cecb6cadec65b25d9e94993 (diff) | |
download | bfs-a85fc263a89fb89bc8b2a8166747660a177b1773.tar.xz |
config: s/attr_format/attr_printf/
Diffstat (limited to 'src/eval.c')
-rw-r--r-- | src/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ struct bfs_eval { /** * Print an error message. */ -attr(format(2, 3)) +attr(printf(2, 3)) static void eval_error(struct bfs_eval *state, const char *format, ...) { // By POSIX, any errors should be accompanied by a non-zero exit status *state->ret = EXIT_FAILURE; |