diff options
author | Junio C Hamano <gitster@pobox.com> | 2024-06-08 20:37:47 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-06-10 18:16:30 +0200 |
commit | 99c7de732e1ea71804d7643dd121fdde4c181f76 (patch) | |
tree | 9f39cc0ceef65c656f07d6c30a489b797c82b96a /wt-status.c | |
parent | __attribute__: mark some functions with LAST_ARG_MUST_BE_NULL (diff) | |
download | git-99c7de732e1ea71804d7643dd121fdde4c181f76.tar.xz git-99c7de732e1ea71804d7643dd121fdde4c181f76.zip |
__attribute__: add a few missing format attributes
A public function mem_pool_strfmt() takes printf like parameters,
but is not given an attribute as such. Also a few file-scope static
functions were missing their format attribute.
Add them.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wt-status.c')
-rw-r--r-- | wt-status.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wt-status.c b/wt-status.c index bdfc23e2ae..a12406eee0 100644 --- a/wt-status.c +++ b/wt-status.c @@ -126,6 +126,7 @@ void status_printf(struct wt_status *s, const char *color, va_end(ap); } +__attribute__((format (printf, 3, 4))) static void status_printf_more(struct wt_status *s, const char *color, const char *fmt, ...) { |