Skip to content

Commit

Permalink
Merge branch 'tb/boundary-traversal-fix' into next
Browse files Browse the repository at this point in the history
A trivial "correctness" fix that does not yet matter in practice.

* tb/boundary-traversal-fix:
  pack-bitmap.c: typofix in `find_boundary_objects()`
  • Loading branch information
gitster committed Nov 25, 2024
2 parents 53e29ae + 91f88f7 commit f312b2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pack-bitmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -1270,7 +1270,7 @@ static struct bitmap *find_boundary_objects(struct bitmap_index *bitmap_git,

tmp_blobs = revs->blob_objects;
tmp_trees = revs->tree_objects;
tmp_tags = revs->blob_objects;
tmp_tags = revs->tag_objects;
revs->blob_objects = 0;
revs->tree_objects = 0;
revs->tag_objects = 0;
Expand Down

0 comments on commit f312b2f

Please sign in to comment.