summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-12-04 10:14:43 +0900
committerJunio C Hamano <gitster@pobox.com>2024-12-04 10:14:44 +0900
commit0a0712e05f12d95478671f314a4296ae18dbb664 (patch)
tree7403f845c2df6df5d18a54fdb98cdd7abeb2d8ea
parent57e81b59f35198afedae18e8363dbffdc96c481d (diff)
parent91f88f76e631a60b51a4814d938f18587f5e2210 (diff)
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()`
-rw-r--r--pack-bitmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pack-bitmap.c b/pack-bitmap.c
index 4fa9dfc771..683f467051 100644
--- a/pack-bitmap.c
+++ b/pack-bitmap.c
@@ -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;