Skip to content

Commit 0d4f46b

Browse files
committed
Merge branch 'tl/traverse-non-commits-rename'
Meh. * tl/traverse-non-commits-rename: list-objects.c: rename "traverse_trees_and_blobs" to "traverse_non_commits"
2 parents bfd515a + b3e36df commit 0d4f46b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

list-objects.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -337,8 +337,8 @@ static void add_pending_tree(struct rev_info *revs, struct tree *tree)
337337
add_pending_object(revs, &tree->object, "");
338338
}
339339

340-
static void traverse_trees_and_blobs(struct traversal_context *ctx,
341-
struct strbuf *base)
340+
static void traverse_non_commits(struct traversal_context *ctx,
341+
struct strbuf *base)
342342
{
343343
int i;
344344

@@ -410,9 +410,9 @@ static void do_traverse(struct traversal_context *ctx)
410410
* needs a reallocation for each commit. Can we pass the
411411
* tree directory without allocation churn?
412412
*/
413-
traverse_trees_and_blobs(ctx, &csp);
413+
traverse_non_commits(ctx, &csp);
414414
}
415-
traverse_trees_and_blobs(ctx, &csp);
415+
traverse_non_commits(ctx, &csp);
416416
strbuf_release(&csp);
417417
}
418418

0 commit comments

Comments
 (0)