aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2026-04-01 01:57:47 +0200
committerJunio C Hamano <gitster@pobox.com>2026-03-31 20:43:13 -0700
commit75c702624d9a5f60a78c2d4d5e8de83468c9c5ec (patch)
tree923c6e639d848f320f2b7d36941b260acbec5f89
parent55903dc87bee544c314706c509168afbbe14d262 (diff)
downloadgit-75c702624d9a5f60a78c2d4d5e8de83468c9c5ec.tar.xz
treewide: use enum for `odb_for_each_object()` flags
We've got a couple of callsites where we pass `odb_for_each_object()` flags, but accept an `unsigned` flags field instead of the corresponding enum. Adapt these to accept the enum type instead. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--odb.c2
-rw-r--r--odb.h2
-rw-r--r--packfile.c2
-rw-r--r--packfile.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/odb.c b/odb.c
index 3f94a53df1..9a11c60048 100644
--- a/odb.c
+++ b/odb.c
@@ -922,7 +922,7 @@ int odb_for_each_object(struct object_database *odb,
const struct object_info *request,
odb_for_each_object_cb cb,
void *cb_data,
- unsigned flags)
+ enum odb_for_each_object_flags flags)
{
struct odb_for_each_object_options opts = {
.flags = flags,
diff --git a/odb.h b/odb.h
index 984bafca9d..09affaf6a5 100644
--- a/odb.h
+++ b/odb.h
@@ -522,7 +522,7 @@ int odb_for_each_object(struct object_database *odb,
const struct object_info *request,
odb_for_each_object_cb cb,
void *cb_data,
- unsigned flags);
+ enum odb_for_each_object_flags flags);
enum odb_count_objects_flags {
/*
diff --git a/packfile.c b/packfile.c
index ee9c7ea1d1..5d3b772973 100644
--- a/packfile.c
+++ b/packfile.c
@@ -2299,7 +2299,7 @@ int has_object_kept_pack(struct repository *r, const struct object_id *oid,
int for_each_object_in_pack(struct packed_git *p,
each_packed_object_fn cb, void *data,
- unsigned flags)
+ enum odb_for_each_object_flags flags)
{
uint32_t i;
int r = 0;
diff --git a/packfile.h b/packfile.h
index 45b35973f0..3eb10d6b65 100644
--- a/packfile.h
+++ b/packfile.h
@@ -352,7 +352,7 @@ typedef int each_packed_object_fn(const struct object_id *oid,
void *data);
int for_each_object_in_pack(struct packed_git *p,
each_packed_object_fn, void *data,
- unsigned flags);
+ enum odb_for_each_object_flags flags);
/*
* Iterate through all packed objects in the given packfile store and invoke