diff options
| author | Junio C Hamano <gitster@pobox.com> | 2024-06-08 11:37:47 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-06-10 09:16:30 -0700 |
| commit | 99c7de732e1ea71804d7643dd121fdde4c181f76 (patch) | |
| tree | 9f39cc0ceef65c656f07d6c30a489b797c82b96a /mem-pool.h | |
| parent | ba744647eae1eeee3a1c2c3d3a2b331fc1075b54 (diff) | |
| download | git-99c7de732e1ea71804d7643dd121fdde4c181f76.tar.xz | |
__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 'mem-pool.h')
| -rw-r--r-- | mem-pool.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mem-pool.h b/mem-pool.h index d1c66413ec..321d86a63c 100644 --- a/mem-pool.h +++ b/mem-pool.h @@ -50,6 +50,7 @@ char *mem_pool_strndup(struct mem_pool *pool, const char *str, size_t len); /* * Allocate memory from the memory pool and format a string into it. */ +__attribute__((format (printf, 2, 3))) char *mem_pool_strfmt(struct mem_pool *pool, const char *fmt, ...); /* |
