> > diff --git a/object-file.c b/object-file.c > > index 065103be3e..d2c6427935 100644 > > --- a/object-file.c > > +++ b/object-file.c > > @@ -2470,11 +2470,12 @@ int repo_has_object_file(struct repository *r, > > * give more context. > > */ > > static int hash_format_check_report(struct fsck_options *opts UNUSED, > > - const struct object_id *oid UNUSED, > > - enum object_type object_type UNUSED, > > - enum fsck_msg_type msg_type UNUSED, > > - enum fsck_msg_id msg_id UNUSED, > > - const char *message) > > + const struct object_id *oid UNUSED, > > + enum object_type object_type UNUSED, > > + const char *ref_checked_name UNUSED, > > + enum fsck_msg_type msg_type UNUSED, > > + enum fsck_msg_id msg_id UNUSED, > > + const char *message) > > That is somewhat annoying reindentation. What happened here? The original code's indentation breaks. There are one more space in each line like the following: static int hash_format_check_report(struct fsck_options *opts UNUSED, const struct object_id *oid UNUSED) ... I think I could fix this by the way.