aboutsummaryrefslogtreecommitdiff
path: root/packfile.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2026-03-02 17:06:52 -0800
committerJunio C Hamano <gitster@pobox.com>2026-03-02 17:06:52 -0800
commit10dd04a3feef385358d66bf3d653325f64c20d3c (patch)
tree2129ba4a8c8b302eb888c5d14ed98139e373a30f /packfile.c
parent02c31a8ddc7a79a4e8f9dd0c437bcf3e73e60203 (diff)
parent732ec9b17b78a49496bfb796fcfe606f3a9f02f1 (diff)
downloadgit-10dd04a3feef385358d66bf3d653325f64c20d3c.tar.xz
Merge branch 'ps/object-info-bits-cleanup'
A couple of bugs in use of flag bits around odb API has been corrected, and the flag bits reordered. * ps/object-info-bits-cleanup: odb: convert `odb_has_object()` flags into an enum odb: convert object info flags into an enum odb: drop gaps in object info flag values builtin/fsck: fix flags passed to `odb_has_object()` builtin/backfill: fix flags passed to `odb_has_object()`
Diffstat (limited to 'packfile.c')
-rw-r--r--packfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/packfile.c b/packfile.c
index 57fbf51876..ce837f852a 100644
--- a/packfile.c
+++ b/packfile.c
@@ -2175,7 +2175,7 @@ int packfile_store_freshen_object(struct packfile_store *store,
int packfile_store_read_object_info(struct packfile_store *store,
const struct object_id *oid,
struct object_info *oi,
- unsigned flags UNUSED)
+ enum object_info_flags flags UNUSED)
{
struct pack_entry e;
int ret;