summaryrefslogtreecommitdiff
path: root/commit-graph.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2026-01-21 08:29:00 -0800
committerJunio C Hamano <gitster@pobox.com>2026-01-21 08:29:00 -0800
commitbc5cbbe24650f4234ed4ed2c21c58058f96dfcac (patch)
treedac08b46bb938c4a38c40178ab3137e863aeba36 /commit-graph.c
parentd627023d80667b8975fee0a8876ac42df20bf7d2 (diff)
parent12d3b58b5552750f351ded7166b347446d9543f3 (diff)
downloadgit-bc5cbbe24650f4234ed4ed2c21c58058f96dfcac.tar.xz
Merge branch 'ps/read-object-info-improvements'
The object-info API has been cleaned up. * ps/read-object-info-improvements: packfile: drop repository parameter from `packed_object_info()` packfile: skip unpacking object header for disk size requests packfile: disentangle return value of `packed_object_info()` packfile: always populate pack-specific info when reading object info packfile: extend `is_delta` field to allow for "unknown" state packfile: always declare object info to be OI_PACKED object-file: always set OI_LOOSE when reading object info
Diffstat (limited to 'commit-graph.c')
-rw-r--r--commit-graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit-graph.c b/commit-graph.c
index 00e8193adc..6b1f02e179 100644
--- a/commit-graph.c
+++ b/commit-graph.c
@@ -1493,7 +1493,7 @@ static int add_packed_commits(const struct object_id *oid,
display_progress(ctx->progress, ++ctx->progress_done);
oi.typep = &type;
- if (packed_object_info(ctx->r, pack, offset, &oi) < 0)
+ if (packed_object_info(pack, offset, &oi) < 0)
die(_("unable to get type of object %s"), oid_to_hex(oid));
if (type != OBJ_COMMIT)