mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
__attribute__: trace2_region_enter_printf() is like "printf"
The last part of the parameter list the function takes is like parameters to printf. Mark it as such. An existing call that formats a value of type size_t using "%d" was found by the compiler with the help with this annotation; fix it. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
1
trace2.h
1
trace2.h
@@ -390,6 +390,7 @@ void trace2_region_enter_printf_va_fl(const char *file, int line,
|
||||
trace2_region_enter_printf_va_fl(__FILE__, __LINE__, (category), \
|
||||
(label), (repo), (fmt), (ap))
|
||||
|
||||
__attribute__((format (printf, 6, 7)))
|
||||
void trace2_region_enter_printf_fl(const char *file, int line,
|
||||
const char *category, const char *label,
|
||||
const struct repository *repo,
|
||||
|
||||
Reference in New Issue
Block a user