diff options
| author | Junio C Hamano <gitster@pobox.com> | 2026-03-02 17:06:52 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2026-03-02 17:06:52 -0800 |
| commit | 10dd04a3feef385358d66bf3d653325f64c20d3c (patch) | |
| tree | 2129ba4a8c8b302eb888c5d14ed98139e373a30f /object-file.h | |
| parent | 02c31a8ddc7a79a4e8f9dd0c437bcf3e73e60203 (diff) | |
| parent | 732ec9b17b78a49496bfb796fcfe606f3a9f02f1 (diff) | |
| download | git-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 'object-file.h')
| -rw-r--r-- | object-file.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/object-file.h b/object-file.h index 8df10bbb15..47fad6663b 100644 --- a/object-file.h +++ b/object-file.h @@ -48,7 +48,7 @@ void odb_source_loose_reprepare(struct odb_source *source); int odb_source_loose_read_object_info(struct odb_source *source, const struct object_id *oid, struct object_info *oi, - unsigned flags); + enum object_info_flags flags); int odb_source_loose_read_object_stream(struct odb_read_stream **out, struct odb_source *source, |
