diff options
| author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2021-03-28 15:15:35 +0200 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2021-03-28 19:03:10 -0700 |
| commit | a1aad71601a7a2052058d735ef86624b3cc774cf (patch) | |
| tree | 8c607238fac75a6cc96456448d55d440e6a9d2e4 /builtin/fsck.c | |
| parent | fsck.h: use designed initializers for FSCK_OPTIONS_{DEFAULT,STRICT} (diff) | |
| download | git-a1aad71601a7a2052058d735ef86624b3cc774cf.tar.gz git-a1aad71601a7a2052058d735ef86624b3cc774cf.zip | |
fsck.h: use "enum object_type" instead of "int"
Change the fsck_walk_func to use an "enum object_type" instead of an
"int" type. The types are compatible, and ever since this was added in
355885d5315 (add generic, type aware object chain walker, 2008-02-25)
we've used entries from object_type (OBJ_BLOB etc.).
So this doesn't really change anything as far as the generated code is
concerned, it just gives the compiler more information and makes this
easier to read.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/fsck.c')
| -rw-r--r-- | builtin/fsck.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin/fsck.c b/builtin/fsck.c index a56a2d0513..ed5f2af6b5 100644 --- a/builtin/fsck.c +++ b/builtin/fsck.c @@ -192,7 +192,8 @@ static int traverse_reachable(void) return !!result; } -static int mark_used(struct object *obj, int type, void *data, struct fsck_options *options) +static int mark_used(struct object *obj, enum object_type object_type, + void *data, struct fsck_options *options) { if (!obj) return 1; |
