diff options
| author | Junio C Hamano <gitster@pobox.com> | 2024-06-08 11:37:44 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-06-10 09:16:19 -0700 |
| commit | 89e78c7cdad1ac70d16c0ceb79b3ff95dfadd2bb (patch) | |
| tree | e82de69b4b5359104d15d1937c7bc7f7f4bb90a8 /trace2.h | |
| parent | 786a3e4b8d754d2b14b1208b98eeb0a554ef19a8 (diff) | |
| download | git-89e78c7cdad1ac70d16c0ceb79b3ff95dfadd2bb.tar.gz | |
__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>
Diffstat (limited to 'trace2.h')
| -rw-r--r-- | trace2.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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, |
