Hi Ezekiel, On Thu, 17 Jul 2025, Ezekiel Newren via GitGitGadget wrote: > diff --git a/xdiff/xtypes.h b/xdiff/xtypes.h > index 8b8467360ecf..6e5f67ebf380 100644 > --- a/xdiff/xtypes.h > +++ b/xdiff/xtypes.h > @@ -39,9 +39,9 @@ typedef struct s_chastore { > } chastore_t; > > typedef struct s_xrecord { > - char const *ptr; > - long size; > - unsigned long ha; > + u8 const* ptr; > + usize size; > + u64 ha; > } xrecord_t; > > typedef struct s_xdfile { You cannot do this on its own, you'll also have to do the following (which incidentally fixes the linux32 failures as well as the win test and win+Meson test failures, see https://github.com/dscho/git/actions/runs/16394351471): -- snipsnap --