summaryrefslogtreecommitdiffstats
path: root/run-command.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-06-08 20:37:44 +0200
committerJunio C Hamano <gitster@pobox.com>2024-06-10 18:16:19 +0200
commit89e78c7cdad1ac70d16c0ceb79b3ff95dfadd2bb (patch)
treee82de69b4b5359104d15d1937c7bc7f7f4bb90a8 /run-command.c
parentGit 2.45 (diff)
downloadgit-89e78c7cdad1ac70d16c0ceb79b3ff95dfadd2bb.tar.xz
git-89e78c7cdad1ac70d16c0ceb79b3ff95dfadd2bb.zip
__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 'run-command.c')
-rw-r--r--run-command.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/run-command.c b/run-command.c
index 1b821042b4..ec2c12e98b 100644
--- a/run-command.c
+++ b/run-command.c
@@ -1753,7 +1753,8 @@ void run_processes_parallel(const struct run_process_parallel_opts *opts)
if (do_trace2)
trace2_region_enter_printf(tr2_category, tr2_label, NULL,
- "max:%d", opts->processes);
+ "max:%"PRIuMAX,
+ (uintmax_t)opts->processes);
pp_init(&pp, opts, &pp_sig);
while (1) {