Skip to content

Commit 0a0712e

Browse files
committed
Merge branch 'tb/boundary-traversal-fix'
A trivial "correctness" fix that does not yet matter in practice. * tb/boundary-traversal-fix: pack-bitmap.c: typofix in `find_boundary_objects()`
2 parents 57e81b5 + 91f88f7 commit 0a0712e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pack-bitmap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1270,7 +1270,7 @@ static struct bitmap *find_boundary_objects(struct bitmap_index *bitmap_git,
12701270

12711271
tmp_blobs = revs->blob_objects;
12721272
tmp_trees = revs->tree_objects;
1273-
tmp_tags = revs->blob_objects;
1273+
tmp_tags = revs->tag_objects;
12741274
revs->blob_objects = 0;
12751275
revs->tree_objects = 0;
12761276
revs->tag_objects = 0;

0 commit comments

Comments
 (0)