On Sun, Sep 10, 2023 at 11:30:49PM -0700, Junio C Hamano wrote: > "Eric W. Biederman" <ebiederm@xxxxxxxxxxxx> writes: > > > diff --git a/pack-write.c b/pack-write.c > > index b19ddf15b284..f22eea964f77 100644 > > --- a/pack-write.c > > +++ b/pack-write.c > > @@ -12,6 +12,7 @@ > > #include "pack-revindex.h" > > #include "path.h" > > #include "strbuf.h" > > +#include "object-file-convert.h" > > ... > > +/* > > + * The *hash contains the pack content hash. > > + * The objects array is passed in sorted. > > + */ > > +const char *write_compat_map_file(const char *compat_map_name, > > + struct pack_idx_entry **objects, > > + int nr_objects, const unsigned char *hash) > > Include "pack-compat-map.h"; otherwise the compiler would complain > for missing prototypes. Likewise this is missing an entry in the .gitignore: --- >8 --- diff --git a/.gitignore b/.gitignore index 5e56e471b3..7f5a93a6f6 100644 --- a/.gitignore +++ b/.gitignore @@ -152,6 +152,7 @@ /git-shortlog /git-show /git-show-branch +/git-show-compat-map /git-show-index /git-show-ref /git-sparse-checkout --- 8< --- Thanks, Taylor