From 9b78d40a9ae0d3f330a4525c9049d6fbed76fbdf Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Tue, 17 Sep 2024 13:31:35 +0200 Subject: [PATCH] fixup! test-tool: add the `path-walk` subcommand --- t/helper/test-path-walk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/helper/test-path-walk.c b/t/helper/test-path-walk.c index 774dbb45ecb7ea..a7321bdf53c229 100644 --- a/t/helper/test-path-walk.c +++ b/t/helper/test-path-walk.c @@ -22,7 +22,7 @@ static int callback_fn(const char *path, void *data) { printf("visiting path '%s' (count: %"PRIuMAX") of type '%s'\n", - path, list->nr, type_name(type)); + path, (uintmax_t)list->nr, type_name(type)); if (verbose) for (size_t i = 0; i < list->nr; i++) printf("\t%s\n", oid_to_hex(list->oid + i));