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/color.c | |
parent | 5b38f658ee42bef05cecb6cadec65b25d9e94993 (diff) | |
download | bfs-a85fc263a89fb89bc8b2a8166747660a177b1773.tar.xz |
config: s/attr_format/attr_printf/
Diffstat (limited to 'src/color.c')
-rw-r--r-- | src/color.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/color.c b/src/color.c index 4c2c8ca..5247cbf 100644 --- a/src/color.c +++ b/src/color.c @@ -1105,7 +1105,7 @@ static int print_link_target(CFILE *cfile, const struct BFTW *ftwbuf) { } /** Format some colored output to the buffer. */ -attr(format(2, 3)) +attr(printf(2, 3)) static int cbuff(CFILE *cfile, const char *format, ...); /** Dump a parsed expression tree, for debugging. */ @@ -1177,7 +1177,7 @@ static int print_expr(CFILE *cfile, const struct bfs_expr *expr, bool verbose) { return 0; } -attr(format(2, 0)) +attr(printf(2, 0)) static int cvbuff(CFILE *cfile, const char *format, va_list args) { const struct colors *colors = cfile->colors; int error = errno; |