mirror of
https://github.com/git/git.git
synced 2026-01-09 17:46:37 +00:00
__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>
This commit is contained in:
@@ -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, ...);
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user