Skip to content

Commit

Permalink
fixup! test-tool: add the path-walk subcommand
Browse files Browse the repository at this point in the history
  • Loading branch information
dscho committed Sep 17, 2024
1 parent 489ce0c commit 9b78d40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/helper/test-path-walk.c
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 9b78d40

Please sign in to comment.